Skip to content

Commit

Permalink
ci: keyperf collector does not exist in Harvest version 22.11
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrinds committed Nov 1, 2024
1 parent d36e322 commit 5b02814
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration/test/installer/harvest.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ func (h *Harvest) Stop() {

func (h *Harvest) AllRunning(ignoring ...string) bool {
pollerArray := h.GetPollerInfo()
outer:
for _, poller := range pollerArray {
if poller.Status != "running" {
for _, ignore := range ignoring {
if strings.Contains(poller.Poller, ignore) {
continue
continue outer
}
}
return false
Expand Down

0 comments on commit 5b02814

Please sign in to comment.