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.
Files changed (2) hide show
  1. package/dist/src.js +1 -1
  2. 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 < 100; attempt += 1) {
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-relay",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Local Codex Relay CLI bridge for the Codex Relay mobile app.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {