diff --git a/yt/yt/library/containers/cri/cri_executor.cpp b/yt/yt/library/containers/cri/cri_executor.cpp index a64ab62bdf81..8286184f8dab 100644 --- a/yt/yt/library/containers/cri/cri_executor.cpp +++ b/yt/yt/library/containers/cri/cri_executor.cpp @@ -592,8 +592,10 @@ class TCriExecutor auto guard = Guard(SpinLock_); if (auto* pullFuture = InflightImagePulls_.FindPtr(image.Image)) { YT_LOG_DEBUG("Waiting for in-flight docker image pull (Image: %v)", image); - return pullFuture->ToImmediatelyCancelable().Apply(BIND([=, this, this_ = MakeStrong(this)] { + return pullFuture->ToImmediatelyCancelable() + .Apply(BIND([=, this, this_ = MakeStrong(this)] (const TError& error) { // Ignore errors and retry pull after end of previous concurrent attempt. + Y_UNUSED(error); return PullImage(image, /*always*/ false, authConfig, podSpec); })); }