Skip to content

Migration guide v3.8.0

Mathieu BAGUE edited this page Oct 8, 2020 · 6 revisions

ExecutionReport

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);
Clone this wiki locally