mjsax commented on code in PR #18778:
URL: https://github.com/apache/kafka/pull/18778#discussion_r1940562488
##########
streams/src/main/java/org/apache/kafka/streams/processor/internals/InternalTopologyBuilder.java:
##########
@@ -640,10 +606,11 @@ public final void addStateStore(final StoreFactory
storeFactory,
if (processorNames != null) {
for (final String processorName : processorNames) {
- Objects.requireNonNull(processorName, "processor name must not
be null");
+ Objects.requireNonNull(processorName, "processor cannot not be
null");
Review Comment:
Just unifying error messages. We usually use this format throughout the
whole code base.
--
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]