Complete a task manually #462
-
Hi folks, Do you know if there's a way to complete the task manually after execution ? E.g. I have an async task executed by another microservice, upon completion, it will send back a completion message, then I want to complete the DB scheduler task manually. Is this possible ? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
kagkarlsson
Feb 1, 2024
Replies: 1 comment 3 replies
-
Not sure I fully understand. If you other microservice has access to the database, it can delete/cancel the scheduled task manually (as long as it is not currently running). You can instantiate |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ok. That is not possible, the instance must be completed (deleted or rescheduled) else it will be considered dead.
You might reschedule the instance a bit into the future though. And the "completion" would be to delete the instance when the microservice job completes.