(execution_id, user)
| 436 | parameter_value_wrappers) |
| 437 | |
| 438 | def finished(execution_id, user): |
| 439 | exit_code = execution_service.get_exit_code(execution_id) |
| 440 | logging_service.write_post_execution_info(execution_id, exit_code) |
| 441 | |
| 442 | self._execution_service.add_start_listener(started) |
| 443 | self._execution_service.add_finish_listener(finished) |
nothing calls this directly
no test coverage detected