Skip to content

Commit

Permalink
Add debugging to fix the healthcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
githubsaturn committed Jan 20, 2025
1 parent 6cb3274 commit 07ac95c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/user/system/CaptainManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,10 @@ class CaptainManager {
}
callbackCalled = true

console.log(`--- Health Check body ---`)
console.log(body)
console.log(`--- Health Check response ---`)
console.log(response)
if (error || !body || body !== self.getHealthCheckUuid()) {
callback(false)
} else {
Expand Down

0 comments on commit 07ac95c

Please sign in to comment.