Skip to content

Commit

Permalink
Ldap config print output keys should match with json config keys
Browse files Browse the repository at this point in the history
  • Loading branch information
definitelynotagoblin committed Aug 11, 2024
1 parent a4ec0a0 commit 09037c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CommonLib/LdapConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ public int GetGCPort(bool ssl)
public override string ToString() {
var sb = new StringBuilder();
sb.AppendLine($"Server: {Server}");
sb.AppendLine($"Port: {GetPort(false)}");
sb.AppendLine($"SSLPort: {GetPort(true)}");
sb.AppendLine($"LdapPort: {GetPort(false)}");
sb.AppendLine($"LdapSSLPort: {GetPort(true)}");
sb.AppendLine($"ForceSSL: {ForceSSL}");
sb.AppendLine($"AuthType: {AuthType.ToString()}");
sb.AppendLine($"MaxConcurrentQueries: {MaxConcurrentQueries}");
Expand Down

0 comments on commit 09037c6

Please sign in to comment.