From 53f7b3e5c6b72e0e167fee4c5e1ca8e2f345ab2b Mon Sep 17 00:00:00 2001 From: Marek Siarkowicz Date: Wed, 28 Feb 2018 09:31:46 +0100 Subject: [PATCH] Fix stackdriver logging test --- test/e2e/instrumentation/logging/utils/wait.go | 3 --- 1 file changed, 3 deletions(-) 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 } }