diff --git a/server/account/src/operations.ts b/server/account/src/operations.ts index ba27c43627..16af7c3ffb 100644 --- a/server/account/src/operations.ts +++ b/server/account/src/operations.ts @@ -1290,7 +1290,8 @@ export async function getPendingWorkspace ( workspaceName: result.workspaceName, operation, region, - version + workspaceVersion: result.version, + requestedVersion: version }) } diff --git a/server/workspace-service/src/service.ts b/server/workspace-service/src/service.ts index e348acdb32..df8a48e81e 100644 --- a/server/workspace-service/src/service.ts +++ b/server/workspace-service/src/service.ts @@ -232,7 +232,8 @@ export class WorkspaceWorker { ctx.info('---UPGRADING----', { workspace: ws.workspace, - version: this.version, + workspaceVersion: ws.version, + requestedVersion: this.version, region: this.region }) @@ -263,7 +264,8 @@ export class WorkspaceWorker { ) ctx.info('---UPGRADE-DONE---------', { workspace: ws.workspace, - version: this.version, + oldWorkspaceVersion: ws.version, + requestedVersion: this.version, region: this.region, time: Date.now() - t }) @@ -278,7 +280,8 @@ export class WorkspaceWorker { ctx.error('---UPGRADE-FAILED---------', { workspace: ws.workspace, - version: this.version, + oldWorkspaceVersion: ws.version, + requestedVersion: this.version, region: this.region, time: Date.now() - t })