Comment 9 for bug 455544

Revision history for this message
John O'Brien (jdobrien) wrote : Re: I am always getting "Protocol version error"

There is a bug in ubuntuone.syncdaemon.config:

def throttling_limit_parser(value):
    """parser for throttling limit values, if value < 0 returns None"""
    if value < 0:
        return None
    else:
        return int(value)

The value comes in as a string so value < 0 is always False.