Skip to content

Commit d958ff4

Browse files
committed
address comments
1 parent 43e703b commit d958ff4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/impl/SchemasResourceBase.java

+5
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,11 @@ protected CompletableFuture<Void> checkSchemaTypeSupported(PostSchemaPayload pay
151151
+ " org.apache.pulsar.client.api.Schema." + schema.getType()
152152
+ " when using a simple type schema"));
153153
}
154+
default: {
155+
// ARRAY, MAP, FIXED, NULL.
156+
log.info("[{}] is using a special schema typed [{}]",
157+
String.valueOf(topicName), schema.getType());
158+
}
154159
}
155160
}
156161
}

0 commit comments

Comments
 (0)