Skip to content

Commit

Permalink
fix log typo in NamespaceService#checkHeartbeatNamespace and Namespac…
Browse files Browse the repository at this point in the history
…eService#checkHeartbeatNamespaceV2 (#12582)

(cherry picked from commit 6afbee6)
  • Loading branch information
Jason918 authored and codelipenghui committed Nov 18, 2021
1 parent 3657203 commit 38b1bbd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ public static String getSLAMonitorNamespace(String host, ServiceConfiguration co
public static String checkHeartbeatNamespace(ServiceUnitId ns) {
Matcher m = HEARTBEAT_NAMESPACE_PATTERN.matcher(ns.getNamespaceObject().toString());
if (m.matches()) {
LOG.debug("SLAMonitoring namespace matched the lookup namespace {}", ns.getNamespaceObject().toString());
LOG.debug("Heartbeat namespace matched the lookup namespace {}", ns.getNamespaceObject().toString());
return String.format("http://%s", m.group(1));
} else {
return null;
Expand Down

0 comments on commit 38b1bbd

Please sign in to comment.