From 7ed7ebd5ced2f41cb9db1811dfad501c6aecf08f Mon Sep 17 00:00:00 2001 From: Palash Biswas Date: Tue, 24 Jan 2023 20:00:58 +0530 Subject: [PATCH] BMC: UpdateBmcMessageStatus functionality --- .../src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs b/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs index 1f0a9f3..f6cf556 100644 --- a/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs +++ b/BCS.BMC/src/BCS.BMC.Web.Mvc/Controllers/NotificationController.cs @@ -222,8 +222,9 @@ namespace BCS.BMC.Web.Controllers requestContent.Headers.ContentType = new MediaTypeWithQualityHeaderValue("application/json"); HttpResponseMessage response = await client.PostAsync(urlPath, requestContent); Logger.Info("Update Response" + response.Content); - return Ok(); + } + return Ok(); } } } \ No newline at end of file