Skip to content

Commit 6627104

Browse files
committed
rix robocorp actions
1 parent 40b4c53 commit 6627104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

robocorp/flowable/robocorp_client/robocorp_handler.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def handle_task(self, job: ExternalWorkerAcquireJobResponse, worker_result_build
8484
robocorp_args = ['run', self.robocorp_action_file, '-a' + action.__str__(), '--log-output-to-stdout=json', '-o' + output_dir, '--']
8585
robocorp_args.extend(params)
8686
print('---> Execute job "' + job.id + '"', robocorp_args)
87-
results = call_robocorp(robocorp_args)
87+
results = call_robocorp(robocorp_args, mod_name='robocorp.actions')
8888
if results.returncode != 0:
8989
print('---> Job execution failed for "' + job.id + '". Output saved to ' + output_dir)
9090
return worker_result_builder.failure().error_message('failed with status code ' + str(results.returncode)).error_details(results.stderr + results.stdout)

0 commit comments

Comments
 (0)