From a51d5d7bf6c4fe663763ab6e557b7fc4e4d0800f Mon Sep 17 00:00:00 2001 From: Shivansh Anand Srivastava Date: Wed, 19 Jun 2024 01:39:56 +0530 Subject: [PATCH] Resolve PR reviews --- .../graphql/spanprocessing/schema/rule/ExcludeSpanRule.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hypertrace-graphql-span-processing-schema/src/main/java/org/hypertrace/graphql/spanprocessing/schema/rule/ExcludeSpanRule.java b/hypertrace-graphql-span-processing-schema/src/main/java/org/hypertrace/graphql/spanprocessing/schema/rule/ExcludeSpanRule.java index 4a8fa35..89abef9 100644 --- a/hypertrace-graphql-span-processing-schema/src/main/java/org/hypertrace/graphql/spanprocessing/schema/rule/ExcludeSpanRule.java +++ b/hypertrace-graphql-span-processing-schema/src/main/java/org/hypertrace/graphql/spanprocessing/schema/rule/ExcludeSpanRule.java @@ -7,8 +7,9 @@ import java.time.Instant; import org.hypertrace.core.graphql.common.schema.id.Identifiable; -@GraphQLDescription("Exclude span rules are the set of rules created using filters based on span attributes based on which we exclude spans at source from reaching the platform") @GraphQLName(ExcludeSpanRule.TYPE_NAME) +@GraphQLDescription( + "Exclude span rules are the set of rules created using filters on span attributes based on which we exclude spans at source from reaching the platform") public interface ExcludeSpanRule extends Identifiable, ExcludeSpanRuleInfo { String TYPE_NAME = "ExcludeSpanRule";