We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I am using sqs-workers for handling long-term tasks and I faced an issue with sending tasks: Here is my code snippet:
sqs = SQSEnv(session=boto_client.get_session()) queue = sqs.queue("dev-test-queue") async generate_task(request: Request): configuration_data = to_config(request) message_id = queue.add_job(job_name="exectute_task", config_data=configuration_data)
The point is queue.add_job(_) return message_id but message is not appeared under SQS queue.
Stack:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am using sqs-workers for handling long-term tasks and I faced an issue with sending tasks:
Here is my code snippet:
sqs = SQSEnv(session=boto_client.get_session()) queue = sqs.queue("dev-test-queue") async generate_task(request: Request): configuration_data = to_config(request) message_id = queue.add_job(job_name="exectute_task", config_data=configuration_data)
The point is queue.add_job(_) return message_id but message is not appeared under SQS queue.
Stack:
The text was updated successfully, but these errors were encountered: