Skip to content

Commit

Permalink
dns cache: remove assert at this layer (#18301)
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Schore <mike.schore@gmail.com>
  • Loading branch information
goaway authored Sep 29, 2021
1 parent c19d65e commit 0656e34
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ DnsCacheSharedPtr DnsCacheManagerImpl::getCache(
}

DnsCacheSharedPtr DnsCacheManagerImpl::lookUpCacheByName(absl::string_view cache_name) {
ASSERT(context_.mainThreadDispatcher().isThreadSafe());
const auto& existing_cache = caches_.find(cache_name);
if (existing_cache != caches_.end()) {
return existing_cache->second.cache_;
Expand Down

0 comments on commit 0656e34

Please sign in to comment.