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.
This commit is contained in:
Julian Tölle 2022-06-11 18:27:55 +02:00
parent f06b93efbe
commit 7de5e14d4e

View file

@ -27,11 +27,6 @@ export class HealthCheckController {
"spotify-web",
this.config.get<string>("SPOTIFY_WEB_API_URL")
),
() =>
this.http.pingCheck(
"spotify-auth",
this.config.get<string>("SPOTIFY_AUTH_API_URL")
),
() => this.typeorm.pingCheck("db"),
]);