Skip to content

Commit 23a407f

Browse files
dkijaniaclaude
andcommitted
Add port 8282 mapping and diagnostics for accounts manager
The lightnet image exposes 8282 but the accounts manager may listen on 8181 or 8282 depending on the image version. Map both and add diagnostic curl checks before attempting acquisition. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6973549 commit 23a407f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/integration.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
ports:
2525
- 8080:8080
2626
- 8181:8181
27+
- 8282:8282
2728
- 3085:3085
2829

2930
steps:
@@ -69,6 +70,10 @@ jobs:
6970
return 1
7071
}
7172
73+
# Debug: check which ports are responding
74+
echo "Checking port 8181..." && curl -sf http://127.0.0.1:8181/ 2>&1 | head -1 || echo "8181 not responding"
75+
echo "Checking port 8282..." && curl -sf http://127.0.0.1:8282/ 2>&1 | head -1 || echo "8282 not responding"
76+
7277
SENDER_PK=$(acquire_account "http://127.0.0.1:8181/acquire-account?unlockAccount=true" "sender")
7378
RECEIVER_PK=$(acquire_account "http://127.0.0.1:8181/acquire-account" "receiver")
7479
echo "sender_pk=$SENDER_PK" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)