Commit 53ad30a0 authored by Łukasz Nowak's avatar Łukasz Nowak

standalone: Expose sepcific exceptions in debug mode

In the commit dc559dad specific exceptions
has been exposed to caller, but in case of SLAPOS_TEST_DEBUG enabled unusal
exception is raised.

This commit improves the situation so that behaviour is consistent neverthless
the SLAPOS_TEST_DEBUG.
parent 3f053f8c
Pipeline #18959 failed with stage
in 0 seconds
......@@ -861,7 +861,10 @@ class StandaloneSlapOS(object):
if e.returncode == SLAPGRID_PROMISE_FAIL:
self._logger.exception('Promise error when running %s', command)
import pdb; pdb.post_mortem()
raise
raise SlapOSNodeCommandError({
'output': 'No output available in debug mode',
'exitstatus': e.returncode,
})
with self.system_supervisor_rpc as supervisor:
retry = 0
while True:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment