Skip to content
New issue

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

Fix rmq channel leak #189

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Account for test queue not being there
  • Loading branch information
stchris committed Jun 28, 2024
commit c1f95c54e59aeda95604af1648829d2743f9ca0a
2 changes: 2 additions & 0 deletions tests/test_taskqueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,8 @@ def did_nack():
def test_get_priority_bucket():
redis = get_fakeredis()
rmq_channel = get_rabbitmq_channel()
rmq_channel.queue_delete("index")
declare_rabbitmq_queue(rmq_channel, "index")
flush_queues(rmq_channel, redis, ["index"])
collection_id = 1

Expand Down
Loading