Removed Check on hard coded urls

This forces the backend to continuously call home and break if no response is received
This commit is contained in:
Kgotso Leokana
2022-08-15 19:43:32 +02:00
committed by GitHub
parent 828a4a8715
commit 460abc6f1d

View File

@ -14,8 +14,6 @@ export class HealthController {
check() { check() {
return this.health.check([ return this.health.check([
() => this.db.pingCheck('database'), () => this.db.pingCheck('database'),
() => this.http.pingCheck('app', 'https://rxresu.me'),
() => this.http.pingCheck('docs', 'https://docs.rxresu.me'),
]); ]);
} }
} }