-
Notifications
You must be signed in to change notification settings - Fork 43
Migration guide v3.8.0
Mathieu BAGUE edited this page Oct 8, 2020
·
6 revisions
The ExecutionReport::ok
method has been removed in the PR #1511, because the default implementation need to access to the temporary directory created by the ComputationManager
to read the standard output and error streams. This methods was used only in unit tests.
If you were using it, you can create a DefaultExceutionReport
instance instead:
new DefaultExecutionReport(workingDir);