#i need to cancel duplicated scheduled task

1 messages · Page 1 of 1 (latest)

glass steppe
#

is there such feature. I have a webhook that fires multiple times in a short period and i need to cancel if its duplicated

rain stratusBOT
#

Thanks for posting in #1088161997662724167.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.

  • Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
  • Use search.convex.dev to search Docs, Stack, and Discord all at once.
  • Additionally, you can post your questions in the Convex Community's #1228095053885476985 channel to receive a response from AI.
  • Avoid tagging staff unless specifically instructed.

Thank you!

serene thistle
#

You can always manually cancel all scheduled runs of a task in the dashboard, but to debounce these you'll need to record the scheduled job id somewhere in the database to record that it's already been run, and decide whether to schedule a new task based on if there's already one running (or one already ran) for a given webhook input.

glass steppe
#

thanks @serene thistle i was thinking about that approach