From 97862e54a5182497bfab216a4a92a2fb4d73f2fd Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 4 Apr 2025 16:14:08 -0300 Subject: [PATCH] fix(app): comment out boot instance creation and saving in legacy mode --- src/app.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app.ts b/src/app.ts index 4fcc8ae4..58e3e1b5 100644 --- a/src/app.ts +++ b/src/app.ts @@ -188,14 +188,14 @@ export class GBServer { if (GBConfigService.get('GB_MODE') === 'legacy') { await core.initStorage(); - [GBServer.globals.bootInstance, azureDeployer] = await core['createBootInstanceEx']( - core, - null, - GBServer.globals.publicAddress, - deployer, - GBConfigService.get('FREE_TIER') - ); - await core.saveInstance(GBServer.globals.bootInstance); + // [GBServer.globals.bootInstance, azureDeployer] = await core['createBootInstanceEx']( + // core, + // null, + // GBServer.globals.publicAddress, + // deployer, + // GBConfigService.get('FREE_TIER') + // ); + // await core.saveInstance(GBServer.globals.bootInstance); } else { await core.initStorage();