From 4f28694c9f3c1f675aab3c0d82c6ba95388f8832 Mon Sep 17 00:00:00 2001 From: Alexandros Kritikos Date: Thu, 8 Apr 2021 18:46:47 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=87=20Removes=20description=20from=20s?= =?UTF-8?q?uccesful=20health=20checks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DbContextHealthCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Configuration.Persistence.HealthCheck/DbContextHealthCheck.cs b/src/Configuration.Persistence.HealthCheck/DbContextHealthCheck.cs index 89db52a..ecb7045 100644 --- a/src/Configuration.Persistence.HealthCheck/DbContextHealthCheck.cs +++ b/src/Configuration.Persistence.HealthCheck/DbContextHealthCheck.cs @@ -66,7 +66,7 @@ public async Task CheckHealthAsync( logger.LogInformation(DbContextHealthLogTemplates.DatabaseMigrated, DbName); - return HealthCheckResult.Healthy($"{DbName} is operating and healthy"); + return HealthCheckResult.Healthy(); } catch (Exception ex) {