Skip to content

Commit

Permalink
Fix log when cluster is turned on/off
Browse files Browse the repository at this point in the history
  • Loading branch information
andythsu committed Sep 20, 2024
1 parent df9bc20 commit a9dad62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public Response updateEntity(
ProxyBackendConfiguration backend =
OBJECT_MAPPER.readValue(jsonPayload, ProxyBackendConfiguration.class);
gatewayBackendManager.updateBackend(backend);
log.info("Setting up the backend %s with healthy state", backend.getName());
log.info("Turning cluster %s %s", backend.getName(), backend.isActive() ? "on" : "off");
routingManager.updateBackEndHealth(backend.getName(), backend.isActive());
break;
case RESOURCE_GROUP:
Expand Down

0 comments on commit a9dad62

Please sign in to comment.