aboutsummaryrefslogtreecommitdiffstats
path: root/yt/cpp/mapreduce/http/http.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'yt/cpp/mapreduce/http/http.cpp')
-rw-r--r--yt/cpp/mapreduce/http/http.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/cpp/mapreduce/http/http.cpp b/yt/cpp/mapreduce/http/http.cpp
index ae84926a2f..4c36091926 100644
--- a/yt/cpp/mapreduce/http/http.cpp
+++ b/yt/cpp/mapreduce/http/http.cpp
@@ -499,7 +499,7 @@ void TAddressCache::AddAddress(TString hostName, TAddressPtr address)
{
TWriteGuard guard(Lock_);
- Cache_.emplace(std::move(hostName), std::move(entry));
+ Cache_[std::move(hostName)] = std::move(entry);
}
}