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
Protocol versions have a major and minor version. Major versions are bumped when the protocol format has breaking changes. Minor versions are bumped when protocol has additions, like new messages or new commands, but existing clients need not worry about breaking changes. A client running on protocol version 2.0 should still work fine with a server with protocol version 2.1.
But currently the client does only a simple equality comparison of the whole protocol version, ie, it checks if "2.0" == "2.1" and fails. We should change it to the following:
Do not fail if :
Major protocol version numbers of both are same
Minor protocol version of server >= minor protocol version of client
The text was updated successfully, but these errors were encountered:
Protocol versions have a major and minor version. Major versions are bumped when the protocol format has breaking changes. Minor versions are bumped when protocol has additions, like new messages or new commands, but existing clients need not worry about breaking changes. A client running on protocol version 2.0 should still work fine with a server with protocol version 2.1.
But currently the client does only a simple equality comparison of the whole protocol version, ie, it checks if "2.0" == "2.1" and fails. We should change it to the following:
Do not fail if :
The text was updated successfully, but these errors were encountered: