We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40b4c53 commit 6627104Copy full SHA for 6627104
robocorp/flowable/robocorp_client/robocorp_handler.py
@@ -84,7 +84,7 @@ def handle_task(self, job: ExternalWorkerAcquireJobResponse, worker_result_build
84
robocorp_args = ['run', self.robocorp_action_file, '-a' + action.__str__(), '--log-output-to-stdout=json', '-o' + output_dir, '--']
85
robocorp_args.extend(params)
86
print('---> Execute job "' + job.id + '"', robocorp_args)
87
- results = call_robocorp(robocorp_args)
+ results = call_robocorp(robocorp_args, mod_name='robocorp.actions')
88
if results.returncode != 0:
89
print('---> Job execution failed for "' + job.id + '". Output saved to ' + output_dir)
90
return worker_result_builder.failure().error_message('failed with status code ' + str(results.returncode)).error_details(results.stderr + results.stdout)
0 commit comments