diff --git a/packages/cli/src/commands/start.ts b/packages/cli/src/commands/start.ts index bc4c4bfe59..62762adbb8 100644 --- a/packages/cli/src/commands/start.ts +++ b/packages/cli/src/commands/start.ts @@ -181,6 +181,16 @@ export class Start extends BaseCommand { await this.initOrchestration(); this.logger.debug('Orchestration init complete'); + + if ( + !config.getEnv('license.autoRenewEnabled') && + config.getEnv('multiMainSetup.instanceType') === 'leader' + ) { + this.logger.warn( + 'Automatic license renewal is disabled. The license will not renew automatically, and access to licensed features may be lost!', + ); + } + Container.get(WaitTracker).init(); this.logger.debug('Wait tracker init complete'); await this.initBinaryDataService();