sabashaikh4 commented on code in PR #9854:
URL: https://github.com/apache/gravitino/pull/9854#discussion_r2753560186
##########
core/src/main/java/org/apache/gravitino/listener/api/event/ListTopicFailureEvent.java:
##########
@@ -40,6 +41,7 @@ public final class ListTopicFailureEvent extends
TopicFailureEvent {
*/
public ListTopicFailureEvent(String user, Namespace namespace, Exception
exception) {
super(user, NameIdentifier.of(namespace.levels()), exception);
+ Preconditions.checkNotNull(namespace, "namespace must not be null");
Review Comment:
@jerryshao Done! I've moved the check before super() and changed to
checkArgument. Updated the test as well. Thanks for the feedback!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]