Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyang01 committed Dec 19, 2024
1 parent 2bdb001 commit b307fb3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/replication-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,15 @@ jobs:
--env=SOURCE_DSN="$SOURCE_DSN" \
apecloud/myduckserver:latest
# Wait for MyDuck to be ready
sleep 10
# Wait and check container status
for i in {1..10}; do
if ! docker ps | grep -q myduck; then
echo "MyDuck container exited unexpectedly"
docker logs myduck
exit 1
fi
sleep 1
done
- name: Verify initial replication
run: |
Expand Down

0 comments on commit b307fb3

Please sign in to comment.