[#342] Remove try-catch from delete block #342

Merged
abereziny merged 1 commit from abereziny/frostfs-testlib:feature--14317 into master 2024-12-24 09:54:59 +00:00
Showing only changes of commit 6e951443ed - Show all commits

View file

@ -181,7 +181,6 @@ class ContainerOperations(interfaces.ContainerInterface):
force: bool = False, force: bool = False,
trace: bool = False, trace: bool = False,
): ):
try:
return self.cli.container.delete( return self.cli.container.delete(
rpc_endpoint=endpoint, rpc_endpoint=endpoint,
cid=cid, cid=cid,
@ -193,8 +192,6 @@ class ContainerOperations(interfaces.ContainerInterface):
force=force, force=force,
trace=trace, trace=trace,
).stdout ).stdout
except RuntimeError as e:
print(f"Error request:\n{e}")
@reporter.step("Get container") @reporter.step("Get container")
def get( def get(