Skip to content

Commit 0576424

Browse files
committed
fix(codex): update binding schema version callers
1 parent 452862b commit 0576424

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/codex/src/app-server/thread-lifecycle.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ export async function startOrResumeThread(params: {
769769
action: rotatedContextEngineBinding ? "rotated" : "started",
770770
});
771771
return {
772-
schemaVersion: 1,
772+
schemaVersion: 2,
773773
threadId: response.thread.id,
774774
sessionFile: params.params.sessionFile,
775775
cwd: params.cwd,

extensions/codex/src/commands.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@ describe("codex command", () => {
25632563
await firstConfirmBindingRead;
25642564
}
25652565
return {
2566-
schemaVersion: 1 as const,
2566+
schemaVersion: 2 as const,
25672567
threadId: "thread-race",
25682568
cwd: "/repo",
25692569
sessionFile: bindingSessionFile,

0 commit comments

Comments
 (0)