Przeglądaj źródła

Merge pull request #80 from aznashwan/missing-licensing

Ignore licensing if URL is empty string.
Nashwan Azhari 6 lat temu
rodzic
commit
989ed4507f
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      coriolis/licensing/client.py

+ 1 - 1
coriolis/licensing/client.py

@@ -33,7 +33,7 @@ class LicensingClient(object):
         Returns None if 'LICENSING_SERVER_BASE_URL' is not defined.
         Returns None if 'LICENSING_SERVER_BASE_URL' is not defined.
         """
         """
         base_url = os.environ.get("LICENSING_SERVER_BASE_URL")
         base_url = os.environ.get("LICENSING_SERVER_BASE_URL")
-        if base_url in [None, "None", "null"]:
+        if base_url in ["", None, "None", "null"]:
             LOG.warn(
             LOG.warn(
                 "No 'LICENSING_SERVER_BASE_URL' env var present. Cannot "
                 "No 'LICENSING_SERVER_BASE_URL' env var present. Cannot "
                 "instantiate licensing client.")
                 "instantiate licensing client.")