Skip to content

Commit

Permalink
Correct config print output
Browse files Browse the repository at this point in the history
  • Loading branch information
definitelynotagoblin committed Aug 9, 2024
1 parent d8e6757 commit a4ec0a0
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,9 +38,9 @@ public int GetGCPort(bool ssl)
public override string ToString() {
var sb = new StringBuilder();
sb.AppendLine($"Server: {Server}");
sb.AppendLine($"Port: {Port}");
sb.AppendLine($"Port: {GetPort(false)}");
sb.AppendLine($"SSLPort: {GetPort(true)}");
sb.AppendLine($"ForceSSL: {GetPort(false)}");
sb.AppendLine($"ForceSSL: {ForceSSL}");
sb.AppendLine($"AuthType: {AuthType.ToString()}");
sb.AppendLine($"MaxConcurrentQueries: {MaxConcurrentQueries}");
if (!string.IsNullOrWhiteSpace(Username)) {
Expand Down

0 comments on commit a4ec0a0

Please sign in to comment.