X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=mod%2Fdistributorapi%2Fdistributor%2Fconfig.py;fp=mod%2Fdistributorapi%2Fdistributor%2Fconfig.py;h=219522055f373531c908587eb72d81f3a13b20fe;hb=c83d2369eb2f0ac40d5acd2db2d7350fe86101e5;hp=d83eee1ca233dac92611a1d914f4a0aedf5c06cd;hpb=2b31b78fb0c6621259898c3553187be4ab0acf8a;p=dcaegen2%2Fplatform.git diff --git a/mod/distributorapi/distributor/config.py b/mod/distributorapi/distributor/config.py index d83eee1..2195220 100644 --- a/mod/distributorapi/distributor/config.py +++ b/mod/distributorapi/distributor/config.py @@ -1,5 +1,5 @@ # ============LICENSE_START======================================================= -# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved. +# Copyright (c) 2019-2022 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -28,11 +28,10 @@ def _grab_env(name, default=None): except KeyError: raise errors.DistributorAPIConfigError("Required environment variable missing: {0}".format(name)) + def init(): global nifi_registry_url - nifi_registry_url = _grab_env("NIFI_REGISTRY_URL" - , default="http://nifi-registry:18080/nifi-registry-api") + nifi_registry_url = _grab_env("NIFI_REGISTRY_URL", default="http://nifi-registry:18080/nifi-registry-api") global onboarding_api_url - onboarding_api_url = _grab_env("ONBOARDING_API_URL" - , default="http://onboarding-api:8080/onboarding") + onboarding_api_url = _grab_env("ONBOARDING_API_URL", default="http://onboarding-api:8080/onboarding")