From f10e565aa65a586c644116cbbee63499ca251129 Mon Sep 17 00:00:00 2001 From: Matthew Pound Date: Mon, 1 Feb 2021 18:00:13 -0700 Subject: [PATCH] Fix nil operation name spanfilter message --- sfxclient/spanfilter/spanfilter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfxclient/spanfilter/spanfilter.go b/sfxclient/spanfilter/spanfilter.go index 5301f19..d79b1c7 100644 --- a/sfxclient/spanfilter/spanfilter.go +++ b/sfxclient/spanfilter/spanfilter.go @@ -31,7 +31,7 @@ const ( // TooManySpansInTrace when we find an abusive number of spans for a given traceID TooManySpansInTrace = "tooManySpansInTrace" // NilOperationName when no localendpoint.name is provided - NilOperationName = "nilServiceName" + NilOperationName = "nilOperationName" ) var emptySpanFilter = &Map{}