Skip to content

Commit

Permalink
BP-1232: break connection attempts to domain '.'
Browse files Browse the repository at this point in the history
  • Loading branch information
definitelynotagoblin committed Jan 7, 2025
1 parent 70f6a66 commit ebf78f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CommonLib/ConnectionPoolManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void ReleaseConnection(LdapConnectionWrapper connectionWrapper, bool conn
}

private bool GetPool(string identifier, out LdapConnectionPool pool) {
if (identifier == null) {
if (string.IsNullOrWhiteSpace(identifier) || identifier == ".") {
pool = default;
return false;
}
Expand Down

0 comments on commit ebf78f6

Please sign in to comment.