Skip to content

Commit d721f85

Browse files
committed
EBISubmissionError -> ComputeError
1 parent f27c230 commit d721f85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

qiita_ware/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def submit_EBI(preprocessed_data_id, action, send):
6666
if rv != 0:
6767
error_msg = ("Error:\nStd output:%s\nStd error:%s" % (
6868
stdout, stderr))
69-
raise EBISubmissionError(error_msg)
69+
raise ComputeError(error_msg)
7070
open(ebi_submission.ascp_reply, 'a').write(
7171
'stdout:\n%s\n\nstderr: %s' % (stdout, stderr))
7272
environ['ASPERA_SCP_PASS'] = old_ascp_pass
@@ -84,7 +84,7 @@ def submit_EBI(preprocessed_data_id, action, send):
8484
if rv != 0:
8585
error_msg = ("Error:\nStd output:%s\nStd error:%s" % (
8686
xml_content, stderr))
87-
raise EBISubmissionError(error_msg)
87+
raise ComputeError(error_msg)
8888
else:
8989
LogEntry.create('Runtime',
9090
('Submission of sequences of pre_processed_id: '

0 commit comments

Comments
 (0)