diff --git a/newrelic_lambda_cli/layers.py b/newrelic_lambda_cli/layers.py index b03904f..3fa81ed 100644 --- a/newrelic_lambda_cli/layers.py +++ b/newrelic_lambda_cli/layers.py @@ -9,7 +9,7 @@ def index(region, runtime): req = requests.get( - "https://%s.nr-layers.iopipe.com/get-layers?CompatibleRuntime=%s" + "https://%s.layers.newrelic-external.com/get-layers?CompatibleRuntime=%s" % (region, runtime) ) layers_response = req.json() diff --git a/setup.py b/setup.py index a649165..4840fcb 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="newrelic-lambda-cli", - version="0.2.1", + version="0.2.2", python_requires=">=3.3", description="A CLI to install the New Relic AWS Lambda integration and layers.", long_description=README,