mjsax commented on code in PR #17170:
URL: https://github.com/apache/kafka/pull/17170#discussion_r1761657173


##########
streams/src/main/java/org/apache/kafka/streams/internals/StreamsConfigUtils.java:
##########
@@ -42,12 +42,12 @@ public enum ProcessingMode {
             this.name = name;
         }
     }
-    
-    @SuppressWarnings("deprecation")
+
+    // TODO cleanup
     public static ProcessingMode processingMode(final StreamsConfig config) {
-        if 
(StreamsConfig.EXACTLY_ONCE.equals(config.getString(StreamsConfig.PROCESSING_GUARANTEE_CONFIG)))
 {
+        if 
("exactly_once".equals(config.getString(StreamsConfig.PROCESSING_GUARANTEE_CONFIG)))
 {
             return ProcessingMode.EXACTLY_ONCE_ALPHA;

Review Comment:
   Yes, will cleanup `ProcessingMode`  in a follow up PR an remove it.



-- 
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]

Reply via email to