We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aad22a commit de4e6caCopy full SHA for de4e6ca
asu/api.py
@@ -269,7 +269,8 @@ def api_v1_build_post():
269
return response, status
270
271
req["store_path"] = current_app.config["STORE_PATH"]
272
- req["cache_path"] = current_app.config.get("CACHE_PATH")
+ if current_app.config.get("CACHE_PATH"):
273
+ req["cache_path"] = current_app.config.get("CACHE_PATH")
274
req["upstream_url"] = current_app.config["UPSTREAM_URL"]
275
req["branch_data"] = current_app.config["BRANCHES"][req["branch"]]
276
req["request_hash"] = request_hash
0 commit comments