You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current Behavior
We are trying to enqueue or delete the job but it throws timeout error after 10 sec of wait. It was working fine before but now its causing this issue and we have not change anything. Its causing this issue on either of functions.
Expected behavior/code
It should queue the job as it was doing before but now its not working as expected. I am using it with redwood
import{Queue}from'quirrel/redwood'exportconsthandler=Queue('.netlify/functions/sendReminders',async(params: any,params2: any)=>{//my logic to send email to users})
Environment
Quirrel version: "quirrel": "^1.14.1",
Node/npm version: 18
Please guide me here if you have change anything.
The text was updated successfully, but these errors were encountered:
Its related to my Fly.io configuration. I migrate it using this doc https://dev.to/remixtape/self-hosting-quirrel-5af7 but I cant understand the URL in the last command to get QUIRREL_TOKEN curl --user ignored:paste_quirrel_passphrase_here -X PUT https://quirrel.fly.dev/tokens/exampleapp
Resolved it. I was passing wrong port 9181 instead of 6379 in flyctl secrets set "REDIS_URL=redis://:[email protected]:9181?family=6"
And
I had to create fresh quirrelredis-quirrel instances.
Make sure to pass 6379 as quirrel-redis PORT.
My new Quirrel is working now for enqueue() and delete() functions.
Bug Report
Current Behavior
We are trying to
enqueue
ordelete
the job but it throws timeout error after 10 sec of wait. It was working fine before but now its causing this issue and we have not change anything. Its causing this issue on either of functions.Input Code
Heres the code snippet:
Expected behavior/code
It should queue the job as it was doing before but now its not working as expected. I am using it with redwood
Environment
Please guide me here if you have change anything.
The text was updated successfully, but these errors were encountered: