Launcher gets triggered by another workflow | Community
Skip to main content
Level 2
October 20, 2020
Solved

Launcher gets triggered by another workflow

  • October 20, 2020
  • 3 replies
  • 3198 views

I have a launcher that is triggered on a cq:PageContent node on 'Node modified' and I have set a condition to prevent it from firing if a property exists. However, the OOTB Publish workflow is triggering this launcher.

I've used the Exclude List to ignore any changes triggered by another workflow process by adding this:
event-user-data:changedByWorkflowProcess

That didn't help. The user data "changedByWorkflowProcess" would already be set by this OOTB publish workflow I'd imagine

I've also tried adding the following to the exclude list, with no luck:

cq:lastReplicated,cq:lastReplicatedBy,cq:lastReplicationAction,jcr:baseVersion,jcr:versionHistory.

Any suggestions?

CC: @smacdonald2008 ; @Jörg_Hoh (I've read your post on https://cqdump.wordpress.com/2020/01/03/prevent-workflow-launchers-from-starting-a-workflow/)

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by AnjaliBiddanda

Hi guys, my globbing in the Path field in Launcher was incorrect. I was using /content instead of /content(/.*/)jcr:content. I didn't think I needed to have jcr:content in the path as my nodeType was already specified as cq:PageContent. Once I narrowed this to jcr:content and used the excludeList, it worked.

3 replies

santhosh_kumark
Level 6
October 20, 2020

Hi @anjalibiddanda ,

 

Hope this kb article helpful to you.

  1. https://helpx.adobe.com/experience-manager/kb/Too-many-workflows-triggered-by-workflow-launcher.html

And here it mentioned like - Implement a custom JCR event listener instead.

See for example https://helpx.adobe.com/experience-manager/using/maven_arch12_event_listener.html

 

Regards,

Santosh

Level 2
October 20, 2020
Thanks @ Santhosh_kumark. I don't want to implement a JCR event listener or a pre-processor if this can be achieved using the exclude list feature.
vanegi
Adobe Employee
Adobe Employee
October 20, 2020

Hi @anjalibiddanda,

You can add the Exclude List in custom workflow launcher configs that specifies any JCR events to exclude (i.e. ignore) when determining whether a workflow should be triggered.

 

Try checking the use case after adding the following in exclude list:

 

jcr:lastModified,dc:modified,dc:format,jcr:lastModifiedBy,imageMap,event-user-data:changedByWorkflowProcess


This launcher property is a comma separated list of items:

  • property-name ignore any jcr event which triggered on the specified property name.
  • event-user-data:<someValue>  ignores any event that contains the <someValue> user-data set through the ObservationManager API.

Thanks!!

Level 2
October 20, 2020

Thanks Vanegi. I tried that. I expect that to work since it has event-user-data:changedByWorkflowProcess in the exclude list, but it doesn't. What am I missing? Do I need to set this changedByWorkflowProcess property somewhere?

AnjaliBiddandaAuthorAccepted solution
Level 2
October 21, 2020

Hi guys, my globbing in the Path field in Launcher was incorrect. I was using /content instead of /content(/.*/)jcr:content. I didn't think I needed to have jcr:content in the path as my nodeType was already specified as cq:PageContent. Once I narrowed this to jcr:content and used the excludeList, it worked.