File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -394,3 +394,17 @@ def output(self, job):
394
394
return self .server .job .output (job .id )
395
395
except xmlrpc .client .Fault as e :
396
396
raise BoaException (e ).with_traceback (e .__traceback__ )
397
+
398
+ def output_size (self , job ):
399
+ """Return the output size for this job, if it finished successfully and has an output.
400
+
401
+ Raises:
402
+ BoaException: if theres an issue reading from the server
403
+ """
404
+ self .ensure_logged_in ()
405
+ try :
406
+ if job .exec_status != "Finished" :
407
+ return "Job is currently running"
408
+ return self .server .job .outputsize (job .id )
409
+ except xmlrpc .client .Fault as e :
410
+ raise BoaException (e ).with_traceback (e .__traceback__ )
Original file line number Diff line number Diff line change @@ -85,6 +85,10 @@ def output(self):
85
85
"""Return the output for this job, if it finished successfully and has output."""
86
86
return self .client .output (self )
87
87
88
+ def output_size (self ):
89
+ """Return the output size for this job, if it finished successfully and has output."""
90
+ return self .client .output_size (self )
91
+
88
92
def refresh (self ):
89
93
"""Refreshes the cached data for this job."""
90
94
job = self .client .get_job (self .id )
You can’t perform that action at this time.
0 commit comments