summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-06-02 10:28:06 +0200
committerJan Cholasta <jcholast@redhat.com>2016-06-03 09:00:34 +0200
commit8b7f2500ba16029faf02ae9318c0e1c51f60ffac (patch)
treecdeb08fcb894e5e7e1a20ec945306975af69dce0 /ipalib
parent6e44557b601f769d23ee74555a72e8b5cc62c0c9 (diff)
downloadfreeipa-8b7f2500ba16029faf02ae9318c0e1c51f60ffac.tar.gz
freeipa-8b7f2500ba16029faf02ae9318c0e1c51f60ffac.tar.xz
freeipa-8b7f2500ba16029faf02ae9318c0e1c51f60ffac.zip
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>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/frontend.py2
1 files changed, 0 insertions, 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):
"""