Skip to content

Commit c2923d8

Browse files
authored
Add missing await on promise. (#17489)
This fixes the build.
1 parent 47d1412 commit c2923d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/server/src/workspace/gitpod-server-impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1312,7 +1312,7 @@ export class GitpodServerImpl implements GitpodServerWithTracing, Disposable {
13121312
log.info({ userId: this.user.id }, "Updating workspace without orgId.");
13131313
const userOrg = await this.userToTeamMigrationService.getUserOrganization(this.user);
13141314
const latestInstance = await this.workspaceDb.trace({}).findCurrentInstance(workspace.id);
1315-
this.userToTeamMigrationService.updateWorkspacesOrganizationId(
1315+
await this.userToTeamMigrationService.updateWorkspacesOrganizationId(
13161316
[{ workspace, latestInstance }],
13171317
userOrg.id,
13181318
);

0 commit comments

Comments
 (0)