Skip to content

Commit

Permalink
fix(provider/gce): Fix typo in metric tag. (spinnaker#2320)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtk54 authored Jan 26, 2018
1 parent c636af9 commit 02def99
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@ class GCEUtil {
while (!executedAtLeastOnce || nextPageToken) {
HttpsHealthCheckList httpsHealthCheckList = agent.timeExecute(
compute.httpsHealthChecks().list(project).setPageToken(nextPageToken),
"compute.httpsHealtchChecks.list",
"compute.httpsHealthChecks.list",
agent.TAG_SCOPE, agent.SCOPE_GLOBAL)

executedAtLeastOnce = true
Expand All @@ -1783,7 +1783,7 @@ class GCEUtil {
while (!executedAtLeastOnce || nextPageToken) {
HealthCheckList healthCheckList = agent.timeExecute(
compute.healthChecks().list(project).setPageToken(nextPageToken),
"compute.healtchChecks.list",
"compute.healthChecks.list",
agent.TAG_SCOPE, agent.SCOPE_GLOBAL)

executedAtLeastOnce = true
Expand Down

0 comments on commit 02def99

Please sign in to comment.