You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When job takes longer than 5 seconds calling scheduler.waitUntilDone(jobId, 5000) will result in a status object which is not yet done (status.isDone() == false).
I did not expect this, I expected waitUntilDone to either return a done status or a TimeoutException.
Same goes for the waintUntilRunning method, it also returns a non running status when timeout is exceeded.
All schedulers which use the waitUntil* implementation in nl.esciencecenter.xenon.adaptors.schedulersScriptingScheduler have this problem.
The text was updated successfully, but these errors were encountered:
When job takes longer than 5 seconds calling
scheduler.waitUntilDone(jobId, 5000)
will result in a status object which is not yet done (status.isDone() == false
).I did not expect this, I expected waitUntilDone to either return a done status or a TimeoutException.
Same goes for the
waintUntilRunning
method, it also returns a non running status when timeout is exceeded.All schedulers which use the waitUntil* implementation in
nl.esciencecenter.xenon.adaptors.schedulersScriptingScheduler
have this problem.The text was updated successfully, but these errors were encountered: