From 8b7f2500ba16029faf02ae9318c0e1c51f60ffac Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Thu, 2 Jun 2016 10:28:06 +0200 Subject: [PATCH] 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 --- ipalib/frontend.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ipalib/frontend.py b/ipalib/frontend.py index 41a0f7c1a..81e9cd4c2 100644 --- a/ipalib/frontend.py +++ b/ipalib/frontend.py @@ -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): """