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
2 changes: 1 addition & 1 deletion e2e/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ services:
deno install
echo "Waiting for provider..."
for i in $(seq 1 60); do
if curl -s --max-time 5 -o /dev/null "$$PROVIDER_URL" 2>/dev/null; then
if deno eval "try { await fetch('$$PROVIDER_URL'); Deno.exit(0) } catch { Deno.exit(1) }" 2>/dev/null; then
echo "Provider is ready."
break
fi
Expand Down
1 change: 1 addition & 0 deletions e2e/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ MEMPOOL_CHEAP_OP_WEIGHT=1
MEMPOOL_EXECUTOR_INTERVAL_MS=5000
MEMPOOL_VERIFIER_INTERVAL_MS=10000
MEMPOOL_TTL_CHECK_INTERVAL_MS=60000
MEMPOOL_MAX_RETRY_ATTEMPTS=3
EOF

# --- Write shared config for test runner ---
Expand Down
1 change: 1 addition & 0 deletions lifecycle/ci-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ MEMPOOL_CHEAP_OP_WEIGHT=1
MEMPOOL_EXECUTOR_INTERVAL_MS=5000
MEMPOOL_VERIFIER_INTERVAL_MS=10000
MEMPOOL_TTL_CHECK_INTERVAL_MS=60000
MEMPOOL_MAX_RETRY_ATTEMPTS=3
`;
await Deno.writeTextFile(`${CONFIG_DIR}/provider.env`, providerEnv);

Expand Down
2 changes: 1 addition & 1 deletion lifecycle/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ services:
deno install
echo "Waiting for provider..."
for i in $(seq 1 60); do
if curl -s --max-time 5 -o /dev/null "$$PROVIDER_URL" 2>/dev/null; then
if deno eval "try { await fetch('$$PROVIDER_URL'); Deno.exit(0) } catch { Deno.exit(1) }" 2>/dev/null; then
echo "Provider is ready."
break
fi
Expand Down
Loading