Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
guysegal committed Nov 15, 2023
1 parent 2a06417 commit a696a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/configuration/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static void init() throws Exception {

KAFKA_BROKER = getString(dotenv, "KAFKA_BROKER");
GROUP_ID = getString(dotenv, "GROUP_ID");
COMMIT_INTERVAL_MS_CONFIG = getString(dotenv, "COMMIT_INTERVAL_MS_CONFIG", "30000");
COMMIT_INTERVAL_MS_CONFIG = getOptionalString(dotenv, "COMMIT_INTERVAL_MS_CONFIG", "30000");

// --------------------
SOURCE_TOPIC = getString(dotenv, "SOURCE_TOPIC");
Expand Down

0 comments on commit a696a7b

Please sign in to comment.