From 1321e1c8890781b212f7dc96526d62111c6c732d Mon Sep 17 00:00:00 2001 From: Valentin Zickner Date: Fri, 29 Nov 2024 16:38:18 +0100 Subject: [PATCH] fix default link to Flowable Work for rpaframework client --- rpaframework/flowable/rpaframework_client/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpaframework/flowable/rpaframework_client/__main__.py b/rpaframework/flowable/rpaframework_client/__main__.py index a55d24b..eedc5f8 100644 --- a/rpaframework/flowable/rpaframework_client/__main__.py +++ b/rpaframework/flowable/rpaframework_client/__main__.py @@ -12,7 +12,7 @@ parser.add_argument('topic', help='Topic of the client to listen to') parser.add_argument('path', type=str, help='The directory or file with the RPA framework task to run.') parser.add_argument('--mode', type=str, choices=['robot', 'action', 'task'], default='robot', help='Type of rpaframework robot or robocorp action or task') - parser.add_argument('--flowable-host', type=str, default='https://trial.flowable.com', help='URL of Flowable Work') + parser.add_argument('--flowable-host', type=str, default='https://trial.flowable.com/work', help='URL of Flowable Work') parser.add_argument('--flowable-token', type=str, help='Bearer Token, can be used for example with the Flowable Trial') parser.add_argument('--flowable-username', type=str, help='Username for Flowable Work when using Basic Authentication') parser.add_argument('--flowable-password', type=str, help='Password for Flowable Work when using Basic Authentication')