Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/hub/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@corbits/bench": "workspace:*",
"@corbits/chat": "workspace:*",
"@corbits/commands": "workspace:*",
"@corbits/error-sink": "workspace:*",
"@corbits/credential-providers": "workspace:*",
"@corbits/docker-provisioner": "workspace:*",
"@corbits/e2b-sandbox-sidecar": "workspace:*",
Expand Down
11 changes: 10 additions & 1 deletion apps/hub/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ import {
workbenchLaunchPersistExtra,
} from "@corbits/chat";
import type { RelaunchNoticePort } from "@corbits/chat";
import { reportError } from "@corbits/error-sink";
import type { FinalizedTurnToolCall } from "@corbits/turn-artifacts";
import { decodedOrNull } from "@corbits/url-path";
import {
Expand Down Expand Up @@ -2385,7 +2386,15 @@ export async function createHub(config: HubConfig) {
myraDefinitionId,
);
return chat?.workbenchId;
} catch {
} catch (cause) {
// Best-effort fallback lookup (CL-6496): a failure here means
// the task orchestrator falls back further, never that the
// caller sees an error -- but that made this failure invisible
// until reportError existed. Reported, not swallowed.
reportError(cause, {
operation: "resolveFallbackWorkbenchId",
tenantId,
});
return undefined;
}
},
Expand Down
34 changes: 32 additions & 2 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading