We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e386a57 + 13c721a commit eca3788Copy full SHA for eca3788
1 file changed
threescale_api_crd/resources.py
@@ -2284,7 +2284,7 @@ def load_openapi(entity, spec):
2284
if "url" in spec:
2285
url = spec["url"]
2286
entity["url"] = url
2287
- res = requests.get(urli, timeout=60)
+ res = requests.get(url, timeout=60)
2288
if url.endswith(".yaml") or url.endswith(".yml"):
2289
entity["body"] = json.dumps(
2290
yaml.load(res.content, Loader=yaml.SafeLoader)
0 commit comments