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
Most of the scripts are doing a "grep -v 'done.$' | sed -e 's/[.=-]/_/g' )" for the config, which will replace a queue name like "abc-def" into "abc_def". The problem with this is, that the same string replacement has to be done with the rabbitmqctl output, because otherwise the values cannot be related to the config data. So in case of the consumer script the last line has to be something like:
HOME=$HOME rabbitmqctl list_queues -p $VHOST name consumers| grep -v "^Listing" | grep -v "done.$" | grep -v "..." | sed -e 's/[.=-]/ _/g' | sed "s/[\t]/.value /g"
This issue is in more or less all scripts.
The text was updated successfully, but these errors were encountered:
Most of the scripts are doing a "grep -v 'done.$' | sed -e 's/[.=-]/_/g' )" for the config, which will replace a queue name like "abc-def" into "abc_def". The problem with this is, that the same string replacement has to be done with the rabbitmqctl output, because otherwise the values cannot be related to the config data. So in case of the consumer script the last line has to be something like:$VHOST name consumers| grep -v "^Listing" | grep -v "done.$ " | grep -v "..." | sed -e 's/[.=-]/ _/g' | sed "s/[\t]/.value /g"
HOME=$HOME rabbitmqctl list_queues -p
This issue is in more or less all scripts.
The text was updated successfully, but these errors were encountered: