codex-relay 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src.js +1 -1
- package/package.json +1 -1
package/dist/src.js
CHANGED
|
@@ -555,7 +555,7 @@ async function startSharedCodexAppServer() {
|
|
|
555
555
|
exitReason = signal ?? code ?? 1;
|
|
556
556
|
});
|
|
557
557
|
const remoteAddress = resolveCodexSharedAppServerRemoteAddress();
|
|
558
|
-
for (let attempt = 0; attempt <
|
|
558
|
+
for (let attempt = 0; attempt < 600; attempt += 1) {
|
|
559
559
|
if (spawnError) throw new Error(`Failed to start the shared Codex app-server: ${spawnError.message}`);
|
|
560
560
|
try {
|
|
561
561
|
await waitForSharedCodexAppServer(remoteAddress);
|