We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 669cad5 commit ecd52dcCopy full SHA for ecd52dc
components/server/src/prebuilds/prebuild-manager.ts
@@ -660,7 +660,9 @@ export class PrebuildManager {
660
}
661
await this.auth.checkPermissionOnOrganization(userId, "read_prebuild", organizationId);
662
663
- const instance = await this.workspaceService.getCurrentInstance(userId, prebuild.workspace.id);
+ const instance = await this.workspaceService.getCurrentInstance(userId, prebuild.workspace.id, {
664
+ skipPermissionCheck: true,
665
+ });
666
const urls = await this.workspaceService.getHeadlessLog(userId, instance.id, async () => {});
667
668
const taskUrl = urls.streams[taskId];
0 commit comments