adding a processed phrase to the server controller

This commit is contained in:
lunardunno
2026-03-30 18:55:01 +04:00
committed by GitHub
parent 7ae42606f2
commit e8d365f69a

View File

@@ -479,6 +479,8 @@ ErrorCode ServerController::buildContainerWorker(const ServerCredentials &creden
return ErrorCode::ServerCgroupMountpoint;
if (stdOut.contains("have reached") && stdOut.contains("pull rate limit"))
return ErrorCode::DockerPullRateLimit;
if (stdOut.contains("we now block all IP addresses"))
return ErrorCode::ServerIPaddressBlockedByDocker;
return error;
}