mirror of
https://github.com/hibiken/asynq.git
synced 2026-04-25 23:15:51 +03:00
[GH-ISSUE #997] [BUG] Receiving "context deadline exceeded" every time I try to deploy it #2504
Labels
No labels
CLI
bug
designing
documentation
duplicate
enhancement
good first issue
good first issue
help wanted
idea
invalid
investigate
needs-more-info
performance
pr-welcome
pull-request
question
wontfix
work in progress
work in progress
work-around-available
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/asynq#2504
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @CarlosEduardoAD on GitHub (Dec 26, 2024).
Original GitHub issue: https://github.com/hibiken/asynq/issues/997
Originally assigned to: @hibiken, @kamikazechaser on GitHub.
Describe the bug
Basically I can't use the Asynq lib to process tasks because every time I deploy it in a Railway project it gives me this error, I've tried multiple things, like increasing write and read timeout, adding a new queue and even removing the timeout from the Redis db.
Environment (please complete the following information):
asynqpackage version: v0.25.1To Reproduce
Steps to reproduce the behavior (Code snippets if applicable):
Basically
I create a server to to handle my jobs
Inside my models, I have a function to add a job (task etc...) to be executed
Finally, my function that executes that job
It's not that much, but I can't really provide anything other than my code and there isn't really to reproduce
Expected behavior
My email sending job to be executed
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
As you can see, I'm building a newsletter, the thing is, is the e-mail protocol slowing down my app and messing up the asynq execution? I don't really know...
Hope you guys can help me with this one, I've been stuck in this for like 3-4 days.