-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Milestone
Description
We often have a task template like this:
*** Settings ***
Library CamundaLibrary ${CAMUNDA_HOST}
*** Variables ***
${CAMUNDA_HOST} %{CAMUNDA_HOST}
${BATCH_SIZE} %{BATCH_SIZE}
*** Tasks ***
Run Robot Service Task
FOR ${i} IN RANGE 0 ${BATCH_SIZE}
${workload} fetch workload my_task_topic_name
${fetched_process_instance} Get fetch response
Pass execution if not $fetched_process_instance Finshed processing ${i} process instances
do something with workload ${workload}
ENDIt would be nice, if condition for ending the task and fetching could be combined:
*** Tasks ***
Run Robot Service Task
FOR ${i} IN RANGE 0 ${BATCH_SIZE}
${workload} fetch and pass my_task_topic_name message=Finshed processing ${i} process instances
do something with workload ${workload}
ENDMetadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers