From f25139ef4cc071290bd0b2eb0e577d1ce67cb633 Mon Sep 17 00:00:00 2001 From: Matheus Fidelis Date: Tue, 27 Aug 2024 17:36:22 -0300 Subject: [PATCH] recommendations --- health-api/controllers/calculator/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/health-api/controllers/calculator/main.go b/health-api/controllers/calculator/main.go index 49dc657..2d53fbf 100644 --- a/health-api/controllers/calculator/main.go +++ b/health-api/controllers/calculator/main.go @@ -177,7 +177,7 @@ func Post(c *gin.Context) { if err != nil { log.Error(). - Str("Service", "imc"). + Str("Service", "recommendations"). Str("Error", err.Error()). Msg("Error to consume gRPC Service") @@ -186,7 +186,7 @@ func Post(c *gin.Context) { ) c.JSON(http.StatusInternalServerError, gin.H{ - "message": "Error to create gRPC Connection with IMC Service", + "message": "Error to create gRPC Connection with Recommendations Service", "error": err.Error(), }) }