Skip to content

Commit

Permalink
fix error wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
mustard-mh committed Sep 21, 2023
1 parent 8d6c410 commit dd893b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/server/src/workspace/workspace-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ export class WorkspaceService {

public async resolveBaseImage(ctx: TraceContext, user: User, imageRef: string) {
try {
return this.workspaceStarter.resolveBaseImage(ctx, user, imageRef);
return await this.workspaceStarter.resolveBaseImage(ctx, user, imageRef);
} catch (e) {
// we could map proper response message according to e.code
// see https://github.com/gitpod-io/gitpod/blob/ef95e6f3ca0bf314c40da1b83251423c2208d175/components/image-builder-mk3/pkg/orchestrator/orchestrator_test.go#L178
Expand Down

0 comments on commit dd893b7

Please sign in to comment.