frontend: do not check API minor version of the client

Thin client always respects API schema of the server, even when it is newer
that the server. Remove the API minor version check done on the server, as
it is no longer necessary.

https://fedorahosted.org/freeipa/ticket/4739

Reviewed-By: David Kupka <dkupka@redhat.com>
This commit is contained in:
Jan Cholasta 2016-06-02 10:28:06 +02:00
parent 6e44557b60
commit 8b7f2500ba

View File

@ -774,8 +774,6 @@ class Command(HasParam):
if server_major != client_major:
raise VersionError(cver=client_version, sver=API_VERSION, server=self.env.xmlrpc_uri)
if client_minor > server_minor:
raise VersionError(cver=client_version, sver=API_VERSION, server=self.env.xmlrpc_uri)
def run(self, *args, **options):
"""