Skip to content

Commit

Permalink
Merge pull request #8851 from hashicorp/b-fix-e2e-8842
Browse files Browse the repository at this point in the history
e2e: fix failure in running metrics test suite jobs.
  • Loading branch information
jrasell authored Sep 9, 2020
2 parents c46b7d4 + 225c320 commit b54ab4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/metrics/prometheus.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func (tc *MetricsTest) setUpPrometheus(f *framework.F) error {
uuid := uuid.Generate()
fabioID := "fabio" + uuid[0:8]
fabioAllocs := e2eutil.RegisterAndWaitForAllocs(f.T(), tc.Nomad(),
"input/fabio.nomad", fabioID, "")
"metrics/input/fabio.nomad", fabioID, "")
if len(fabioAllocs) < 1 {
return fmt.Errorf("fabio failed to start")
}
Expand All @@ -36,7 +36,7 @@ func (tc *MetricsTest) setUpPrometheus(f *framework.F) error {
tc.fabioAddress = fmt.Sprintf("http://%s:9999", publicIP)
prometheusID := "prometheus" + uuid[0:8]
prometheusAllocs := e2eutil.RegisterAndWaitForAllocs(f.T(), tc.Nomad(),
"input/prometheus.nomad", prometheusID, "")
"metrics/input/prometheus.nomad", prometheusID, "")
if len(prometheusAllocs) < 1 {
return fmt.Errorf("prometheus failed to start")
}
Expand Down

0 comments on commit b54ab4e

Please sign in to comment.