We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec7e4f0 commit 184da8aCopy full SHA for 184da8a
.github/workflows/test.yml
@@ -82,6 +82,13 @@ jobs:
82
( sudo ./caddy run --config .github/workflows/Caddyfile 2>&1 | tee caddy.log ) &
83
CADDY_PID=$!
84
echo "CADDY_PID=$CADDY_PID" >> "$GITHUB_ENV"
85
+
86
+ # Start lock logger
87
+ ( for i in {1..30}; do
88
+ echo "----- $(date) -----"
89
+ psql "postgres://postgres:@localhost:5432/postgres" -c "TABLE caddy_locks;" || true
90
+ sleep 1
91
+ done ) &
92
93
# Wait for the test domain to be ready on 443
94
for i in {1..30}; do
0 commit comments