From 460abc6f1db017674363c6d72d9c4c08477a64c5 Mon Sep 17 00:00:00 2001 From: Kgotso Leokana <2615701+kgotso@users.noreply.github.com> Date: Mon, 15 Aug 2022 19:43:32 +0200 Subject: [PATCH] Removed Check on hard coded urls This forces the backend to continuously call home and break if no response is received --- server/src/health/health.controller.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/server/src/health/health.controller.ts b/server/src/health/health.controller.ts index 4aa6e96f..a1f61152 100644 --- a/server/src/health/health.controller.ts +++ b/server/src/health/health.controller.ts @@ -14,8 +14,6 @@ export class HealthController { check() { return this.health.check([ () => this.db.pingCheck('database'), - () => this.http.pingCheck('app', 'https://rxresu.me'), - () => this.http.pingCheck('docs', 'https://docs.rxresu.me'), ]); } }