简体   繁体   中英

rabbitmqadmin list queues name message_stats.publish_details.rate report 'float' object has no attribute 'encode'

when I run the command in the rabbitmq 3.6.10, "rabbitmqadmin list queues name consumers message_stats.publish_details.rate"

echo AttributeError: 'float' object has no attribute 'encode' in the console.

just modify the python script file "rabbitmqadmin" (422 line of code):

def maybe_utf8(s):
     if isinstance(s, int):
         # s can be also an int for ex messages count
        return str(s)
     if isinstance(s, float):
        # s can be also a float for message rate
        return str(s)
     if sys.version_info[0] == 3:
        # It will have an encoding, which Python will respect
        return s

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM