ActionRetrier docs
Is the ActionRetrier still being actively maintained? I'm trying to look for documentation but can't seem to find a unything up to date
10 Replies
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!
they're documented here https://www.convex.dev/components/retrier
Convex
Action Retrier
Add reliability to an unreliable external service. Retry idempotent calls a set number of times.
That's weird though i'm following those docs and trying to and im gettting thrown an error saying that "components" is not exported from that file
Did the file change?
darn yes we need to update the docs apparently
it's
import { components } from "./convex/_generated/api";
Do you know which file I should be exporting from?
Ah thank you
the example code https://github.com/get-convex/action-retrier/tree/main/example should be up to date if there are any more issues with the docs
GitHub
action-retrier/example at main · get-convex/action-retrier
Convex component for retrying idempotent actions. Contribute to get-convex/action-retrier development by creating an account on GitHub.
Hi anyone who's having this same issue, the example might be a bit outdated at this time, doesn't seem to export in 1.18.2. To fix this I simply just did in my convex action instead
if you're running
npx convex dev
, the generated file will be updatedhmm might be an issue on my end then because I tried deleting _generated and running multiple times and it didn't change
does
npx convex dev
work with no errors? and have you updated your convex/convex.config.ts ?