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
We use this check with the option vhost.
We have two virtualHost (xxx and xxx-test).
The problems is this check queue in virtualhost xxx and xxx-test.
To correct the problem, i have replace:
return queues.select { |x| x['vhost'].match(config[:vhost]) }
By
return queues.select { |x| x['vhost']==config[:vhost] }.
Can you integrate this modification ?
The text was updated successfully, but these errors were encountered:
I think that we could maybe add an option to do exact match rather than regex. Also you could pass a regex that would exclude the test one. I would be happy to accept a PR to do this.
We use this check with the option vhost.
We have two virtualHost (xxx and xxx-test).
The problems is this check queue in virtualhost xxx and xxx-test.
To correct the problem, i have replace:
return queues.select { |x| x['vhost'].match(config[:vhost]) }
By
return queues.select { |x| x['vhost']==config[:vhost] }.
Can you integrate this modification ?
The text was updated successfully, but these errors were encountered: