Error for cgroup mountpoint
Added handling of message: cgroup mountpoint does not exist.
This commit is contained in:
parent
2a6e6a1e24
commit
fe0dfbc13d
1 changed files with 2 additions and 0 deletions
|
|
@ -467,6 +467,8 @@ ErrorCode ServerController::runContainerWorker(const ServerCredentials &credenti
|
|||
return ErrorCode::ServerPortAlreadyAllocatedError;
|
||||
if (stdOut.contains("is already in use by container"))
|
||||
return ErrorCode::ServerPortAlreadyAllocatedError;
|
||||
if (stdOut.contains("cgroup mountpoint does not exist"))
|
||||
return ErrorCode::ServerCgroupMuntpointDoesNotExist;
|
||||
if (stdOut.contains("invalid publish"))
|
||||
return ErrorCode::ServerDockerFailedError;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue