org.apache.sling.event.jobs.QueueConfiguration~workflow : How can we override this config only for specific workflow model in AEM cloud
{
"queue.maxparallel": "0.5",
"queue.name": "Granite Workflow Queue",
"queue.preferRunOnCreationInstance": true,
"queue.priority": "MIN",
"queue.queryableJobs": false,
"queue.topics": "com/adobe/granite/workflow/job*",
"queue.type": "TOPIC_ROUND_ROBIN"
}
By default we have above config added for aem workflows to run as job , How can we add this config in aem cloud so that it only impact specific custom workflow,
Can we add config as below:
fiilename: org.apache.sling.event.jobs.QueueConfiguration~workflow-customwfmodal.cfg.json
{
"queue.maxparallel": "0.5",
"queue.name": "Granite Workflow Queue",
"queue.preferRunOnCreationInstance": true,
"queue.priority": "NORM",
"queue.queryableJobs": false,
"queue.topics": "com/adobe/granite/workflow/job/conf/global/settings/workflow/models/test-custom-wf-model",
"queue.type": "ORDERED"
} Any insights will be helpful.
Thanks
