Skip to content

Commit 0326b12

Browse files
committed
fixing config path for git.systemGitAuthProviders
1 parent 0004d2e commit 0326b12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

agent/src/main/java/com/walmartlabs/concord/agent/cfg/GitConfiguration.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ public class GitConfiguration {
4949
@Inject
5050
public GitConfiguration(Config cfg) {
5151
this.token = getStringOrDefault(cfg, "git.oauth", () -> null);
52-
this.systemGitAuthProviders = cfg.hasPath("systemGitAuthProviders")
53-
? cfg.getConfigList("systemGitAuthProviders").stream()
52+
this.systemGitAuthProviders = cfg.hasPath("git.systemGitAuthProviders")
53+
? cfg.getConfigList("git.systemGitAuthProviders").stream()
5454
.map(GitConfiguration::buildAuthProvider)
5555
.collect(Collectors.toList())
5656
: null;

0 commit comments

Comments
 (0)