This is an automated email from the ASF dual-hosted git repository.
arjun4084346 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gobblin.git
The following commit(s) were added to refs/heads/master by this push:
new f839130821 fixing an issue of not able to connect to db (#4051)
f839130821 is described below
commit f8391308217091eeb38d545e67c1ef225e0b344d
Author: Arjun Singh Bora <[email protected]>
AuthorDate: Mon Sep 9 11:52:22 2024 -0700
fixing an issue of not able to connect to db (#4051)
---
.../service/modules/orchestration/MultiActiveLeaseArbiterFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/MultiActiveLeaseArbiterFactory.java
b/gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/MultiActiveLeaseArbiterFactory.java
index 64c353371f..6eac369004 100644
---
a/gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/MultiActiveLeaseArbiterFactory.java
+++
b/gobblin-service/src/main/java/org/apache/gobblin/service/modules/orchestration/MultiActiveLeaseArbiterFactory.java
@@ -42,7 +42,7 @@ public abstract class MultiActiveLeaseArbiterFactory
implements Provider<MultiAc
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);
}