Skip to content

Commit

Permalink
fix: fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitaich1998 committed Apr 24, 2024
1 parent e7e3115 commit e67bbbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class HttpV2SinkUtils {

public static void addAdditionalConfigsForHttpV2Sink(Map<String, String> env) {

switch (KafkaConsumerMode.valueOf(env.getOrDefault("SOURCE_KAFKA_CONSUMER_MODE", "SYNC"))) {
switch (KafkaConsumerMode.valueOf(env.getOrDefault("SOURCE_KAFKA_CONSUMER_MODE", "SYNC").toUpperCase())) {
case SYNC:
env.put("SINK_HTTPV2_MAX_CONNECTIONS", "1");
break;
Expand Down

0 comments on commit e67bbbe

Please sign in to comment.