Skip to content

Commit

Permalink
Merge pull request #26 from ClickHouse/fix-tsan-condvar-2
Browse files Browse the repository at this point in the history
Fix TSan report around condvar in HostResolver (2)
  • Loading branch information
alexey-milovidov authored Jun 25, 2024
2 parents 6463c9c + 5b79cd8 commit d5450d7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ bool GeneralHTTPCredentialsProvider::ShouldCreateGeneralHTTPProvider(const Aws::
std::unique_lock<std::mutex> lock(hostResolverMutex);
shouldAllow = !addresses.empty();
hostResolved = true;
hostResolverCV.notify_one();
}
else
{
Expand Down

0 comments on commit d5450d7

Please sign in to comment.