- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2019 05:26 AM
Hi,
I use nuxeo LTS 2019 (10.10). I would like to disable the scheduled task "orphanVersionsCleanup" but i don't know how to do it
I have found the extension point for the contribution: http://explorer.nuxeo.com/nuxeo/site/distribution/server-10.10/viewExtensionPoint/org.nuxeo.ecm.core...
and the documentation : https://doc.nuxeo.com/nxdoc/scheduling-periodic-events/
Can i remove the cronExpression to disable the service ?
Or i write an "impossible cron expression" (32 January) like <cronExpression>0 0 0 32 1 ?</cronExpression>
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2019 06:05 AM
You can use
<schedule id="orphanVersionsCleanup" enabled="false" />
I'm not sure why this isn't in the doc, but it's supported and works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2019 06:05 AM
You can use
<schedule id="orphanVersionsCleanup" enabled="false" />
I'm not sure why this isn't in the doc, but it's supported and works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-07-2019 08:27 AM
Thank you very much !
