startcontainer - thow our own exception so that the message is not truncated

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-12-11 11:17:08 +01:00
parent ff0d8637ab
commit dc223275d4

View file

@ -572,7 +572,7 @@ class DockerActionManager
]
);
} catch (RequestException $e) {
throw $e;
throw new \Exception("Could not start container " . $container->GetIdentifier() . ": " . $e->getMessage());
}
}