diff --git a/test/e2e/instrumentation/logging/utils/wait.go b/test/e2e/instrumentation/logging/utils/wait.go index 1c3eb9e4ea..0535b27302 100644 --- a/test/e2e/instrumentation/logging/utils/wait.go +++ b/test/e2e/instrumentation/logging/utils/wait.go @@ -48,9 +48,6 @@ func UntilFirstEntryFromLog(log string) IngestionPred { return func(_ string, entries []LogEntry) (bool, error) { for _, e := range entries { if e.LogName == log { - if e.Location != framework.TestContext.CloudConfig.Zone { - return false, fmt.Errorf("Bad location in logs '%s' != '%d'", e.Location, framework.TestContext.CloudConfig.Zone) - } return true, nil } }