Commit e6a405b2 authored by Cage, Gregory's avatar Cage, Gregory
Browse files

Add more descriptive message to interactive tool timeout failure

parent 0ae029e8
Loading
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -73,7 +73,10 @@ class Job:
        status = self.cancel()
        # if status is false, the job has been in a terminal state already, indicating an error somewhere in execution.
        if status:
            raise Exception("Unable to fetch the URL for interactive tool.")
            raise Exception(
                "Unable to fetch the URL for interactive tool. This could be due to needing to pull the docker image. "
                "Try again with a larger 'max_tries' value."
            )
        else:
            raise Exception("Interactive tool was stopped unexpectedly.")