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
Standard output is mixed up if Python scripts are evaluated (Jython) in parallel within one single JVM (non forked mode). In non forked mode, reproduce it by submitting twice a single-Jython-task-based workflow with the following script:
import time
for x in range(1, 5):
print x
time.sleep(1)
The job1 output:
1
2
3
The job2 output:
1
4
2
3
4
Fabien Viale Hier à 20:56
I have some bad news, this seems to be an identified and unresolved issue in jython.
Standard output is mixed up if Python scripts are evaluated (Jython) in parallel within one single JVM (non forked mode). In non forked mode, reproduce it by submitting twice a single-Jython-task-based workflow with the following script:
import time
for x in range(1, 5):
print x
time.sleep(1)
The job1 output:
1
2
3
The job2 output:
1
4
2
3
4
Fabien Viale Hier à 20:56
I have some bad news, this seems to be an identified and unresolved issue in jython.
https://bugs.jython.org/issue2513
Describes exactly the same issue, with no progress.
(Need to wait for an update of jython)
The text was updated successfully, but these errors were encountered: