In a project I'm working on, there's a concern regarding Hutch::Consumer#consume method:
class TestConsumer
include Hutch::Consumer
# consume >> won't be using the consume method
What happens is that all bindings to the test_consumer queue will be removed, even ones I've manually created. Which might be risky in some cases (human errors in dealing with the consume method).
The questions here are following:
What is the philosophy behind this behavior ?
Are there any recommendations to mitigate this risk ? (which might accidentally cause the deletion of bindings)
In a project I'm working on, there's a concern regarding
Hutch::Consumer#consume
method:What happens is that all bindings to the
test_consumer
queue will be removed, even ones I've manually created. Which might be risky in some cases (human errors in dealing with theconsume
method).The questions here are following: