I have an App that exists to run cron-like process, which I run manually. It runs, and shuts down. Sometimes it fails, and this triggers a “automatic rollback to previous deployment”, which is never what I want, because the issue is almost always with an external resource.
How do I disable this?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey @petersergeant,
I believe that this is not really possible out of the box.
The best thing to do to get your voice heard regarding this would be to head over to our Product Ideas board and post a new idea, including as much information as possible for what you’d like to see implemented.
In the meantime what you could do is to come up with a mechanism that detects the failure in those external API calls and does not terminate your run process. Or you could implement a health check endpoint that is always healthy even though the app would fail to complete the external calls that you are referring to:
Another option could be to use a serverless function with scheduled time:
Hope that helps!
- Bobby.