From 7de5e14d4ecb8000481d98f8a4b0f2ee03e39a5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sat, 11 Jun 2022 18:27:55 +0200 Subject: [PATCH] fix(health): remove faulty health check to spotify-auth The endpoint returns a 503 OFTEN (~1x per hour), which causes unnecessary service restarts and issues in sentry. --- src/health-check/health-check.controller.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/health-check/health-check.controller.ts b/src/health-check/health-check.controller.ts index ef4a911..c06f8ba 100644 --- a/src/health-check/health-check.controller.ts +++ b/src/health-check/health-check.controller.ts @@ -27,11 +27,6 @@ export class HealthCheckController { "spotify-web", this.config.get("SPOTIFY_WEB_API_URL") ), - () => - this.http.pingCheck( - "spotify-auth", - this.config.get("SPOTIFY_AUTH_API_URL") - ), () => this.typeorm.pingCheck("db"), ]);