Case for error cgroup

Added case and case description for: Cgroup Mountpoint Does Not Exist
This commit is contained in:
lunardunno 2025-03-22 14:54:56 +04:00
parent fe0dfbc13d
commit 106a1646b7
3 changed files with 3 additions and 1 deletions

View file

@ -468,7 +468,7 @@ ErrorCode ServerController::runContainerWorker(const ServerCredentials &credenti
if (stdOut.contains("is already in use by container"))
return ErrorCode::ServerPortAlreadyAllocatedError;
if (stdOut.contains("cgroup mountpoint does not exist"))
return ErrorCode::ServerCgroupMuntpointDoesNotExist;
return ErrorCode::ServerCgroupMountpointDoesNotExist;
if (stdOut.contains("invalid publish"))
return ErrorCode::ServerDockerFailedError;