8000 Don't hardcode http:// in wheel cache location · scele/rules_python@d2716fb · GitHub
[go: up one dir, main page]

Skip to content

Commit d2716fb

Browse files
author
Rudi Chiarito
committed
Don't hardcode http:// in wheel cache location
1 parent 697e05e commit d2716fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules_python/piptool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def get_cache_url(args):
131131
cache_base = os.environ.get("BAZEL_WHEEL_CACHE")
132132
if not cache_base or not args.cache_key:
133133
return None
134-
return "http://{}/{}".format(cache_base, args.cache_key)
134+
return "{}/{}".format(cache_base, args.cache_key)
135135

136136
def get_remote_retry_attempts():
137137
env_value = os.environ.get("BAZEL_WHEEL_REMOTE_RETRY_ATTEMPTS")

0 commit comments

Comments
 (0)
0