We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b532ae + b1b38f0 commit 4444f01Copy full SHA for 4444f01
rsconnect/http_support.py
@@ -5,7 +5,7 @@
5
import socket
6
import ssl
7
import os
8
-
+from warnings import warn
9
from . import VERSION
10
from .log import logger
11
from six.moves import http_client as http
@@ -39,7 +39,7 @@ def _get_proxy():
39
return None, None, None, None
40
parsed = urlparse(proxyURL)
41
if parsed.scheme not in ["https"]:
42
- raise Exception("HTTPS_PROXY scheme must be https://")
+ warn("HTTPS_PROXY scheme is not using https")
43
redacted_url = "{}://".format(parsed.scheme)
44
if parsed.username:
45
redacted_url += "{}:{}@".format(parsed.username, "REDACTED")
0 commit comments