Skip to content

Commit

Permalink
fixing an issue of not able to connect to db (#4051)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjun4084346 authored Sep 9, 2024
1 parent 45ad13e commit f839130
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public MultiActiveLeaseArbiterFactory(Config config, String configPrefix) {
throw new RuntimeException(String.format("Unable to initialize multiActiveLeaseArbiter due to missing "
+ "configurations that should be prefixed by %s.", configPrefix));
}
this.leaseArbiterConfig = config.getConfig(configPrefix);
this.leaseArbiterConfig = config.getConfig(configPrefix).withFallback(config);
log.info("Lease arbiter will be initialized with config {}", leaseArbiterConfig);
}

Expand Down

0 comments on commit f839130

Please sign in to comment.