My Convex deployments are consistently timing out
Problem:
We are unable to deploy our backend changes. Every time we run
npx convex deploy, the command executes for exactly 60 seconds and then fails with a timeout error.Command Executed:
npx convex deployExact Error Message:
Error executing command: Command timed out after 60000ms: npx convex deployImpact:
This is a critical issue. Our live application is running old code, which has a broken authentication system. Users cannot log in because the backend with the correct Resend API key configuration and verification logic is not deployed.
Troubleshooting Steps Taken:
My AI assistant has already attempted the following:
1. Identified a potential missing dependency (
@react-email/render) that might have been causing build issues.2. Installed the dependency successfully using
pnpm add @react-email/render.3. Re-ran
npx convex deploy, but it failed again with the same 60-second timeout error.The code itself has been validated and should be correct. The problem appears to be with the deployment process on the Convex platform timing out. Could you please investigate why our deployments are failing to complete?
