Skip to content

Commit

Permalink
[PUBDEV-4248] 🔥 Hotfix in init() for Py API (h2oai#1044)
Browse files Browse the repository at this point in the history
  • Loading branch information
navdeep-G authored and mmalohlava committed Apr 14, 2017
1 parent cb5baef commit 6c239d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions h2o-py/h2o/h2o.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ def get_mem_size(mmint, mmgb):
check_version = config["init.check_version"].lower() != "false"
elif os.environ.get("H2O_DISABLE_STRICT_VERSION_CHECK"):
check_version = False
else:
check_version = strict_version_check
else:
check_version = strict_version_check
if insecure is None:
if "init.verify_ssl_certificates" in config:
verify_ssl_certificates = config["init.verify_ssl_certificates"].lower() != "false"
Expand Down

0 comments on commit 6c239d7

Please sign in to comment.