From 54ea07bfbdf8a9e706031bfeca426635612b29b5 Mon Sep 17 00:00:00 2001 From: Charles Korn Date: Wed, 17 Jul 2024 11:01:44 +1000 Subject: [PATCH] Ignore `caller` in `ring` tests --- ring/replication_set_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ring/replication_set_test.go b/ring/replication_set_test.go index 4868e752f..4b8ac021d 100644 --- a/ring/replication_set_test.go +++ b/ring/replication_set_test.go @@ -2124,7 +2124,7 @@ func (l *testLogger) Log(keyvals ...interface{}) error { key := keyvals[i] value := keyvals[i+1] - if key == "user" || key == "method" { + if key == "user" || key == "method" || key == "caller" { // These keys are added automatically by spanlogger, but they're not interesting for our tests. continue }