We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0004d2e commit 0326b12Copy full SHA for 0326b12
agent/src/main/java/com/walmartlabs/concord/agent/cfg/GitConfiguration.java
@@ -49,8 +49,8 @@ public class GitConfiguration {
49
@Inject
50
public GitConfiguration(Config cfg) {
51
this.token = getStringOrDefault(cfg, "git.oauth", () -> null);
52
- this.systemGitAuthProviders = cfg.hasPath("systemGitAuthProviders")
53
- ? cfg.getConfigList("systemGitAuthProviders").stream()
+ this.systemGitAuthProviders = cfg.hasPath("git.systemGitAuthProviders")
+ ? cfg.getConfigList("git.systemGitAuthProviders").stream()
54
.map(GitConfiguration::buildAuthProvider)
55
.collect(Collectors.toList())
56
: null;
0 commit comments