mongodb_user: don't call buildInfo with Pymongo > 3.5 (#42350)

Bug: #35155
pull/44888/head
gyurco 6 years ago committed by ansibot
parent 533656694e
commit 4ad7642ba0

@ -383,8 +383,9 @@ def main():
client = MongoClient(**connection_params)
# NOTE: this check must be done ASAP.
# We doesn't need to be authenticated.
check_compatibility(module, client)
# We doesn't need to be authenticated (this ability has lost in PyMongo 3.6)
if LooseVersion(PyMongoVersion) <= LooseVersion('3.5'):
check_compatibility(module, client)
if login_user is None and login_password is None:
mongocnf_creds = load_mongocnf()

Loading…
Cancel
Save