forked from TrueCloudLab/frostfs-testlib
[#347] remove stderr check
Signed-off-by: m.malygina <m.malygina@yadro.com>
This commit is contained in:
parent
974836f1bd
commit
5a291c5b7f
1 changed files with 1 additions and 1 deletions
|
@ -193,7 +193,7 @@ class RemoteProcess:
|
|||
)
|
||||
if "No such file or directory" in terminal.stderr:
|
||||
return None
|
||||
elif terminal.stderr or terminal.return_code != 0:
|
||||
elif terminal.return_code != 0:
|
||||
raise AssertionError(f"cat process {file} was not successful: {terminal.stderr}")
|
||||
|
||||
return terminal.stdout
|
||||
|
|
Loading…
Reference in a new issue