Skip to content

Commit 9ced66c

Browse files
authored
Pass tags as list for consistency with Java implementation (confluentinc#2343)
1 parent e5561f8 commit 9ced66c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Confluent.SchemaRegistry.Rules/CelFieldExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public async Task<object> Transform(RuleContext ctx, RuleContext.FieldContext fi
6565
{ "fullName", fieldCtx.FullName },
6666
{ "name", fieldCtx.Name },
6767
{ "typeName", fieldCtx.Type.ToString().ToUpper() },
68-
{ "tags", fieldCtx.Tags },
68+
{ "tags", fieldCtx.Tags.ToList() },
6969
{ "message", message }
7070
}
7171
);

0 commit comments

Comments
 (0)