Explorar o código

fix: update inner api proxies (#9174)

Joe hai 6 meses
pai
achega
1e7ef46e9c
Modificáronse 1 ficheiros con 6 adicións e 1 borrados
  1. 6 1
      api/services/enterprise/base.py

+ 6 - 1
api/services/enterprise/base.py

@@ -7,11 +7,16 @@ class EnterpriseRequest:
     base_url = os.environ.get("ENTERPRISE_API_URL", "ENTERPRISE_API_URL")
     secret_key = os.environ.get("ENTERPRISE_API_SECRET_KEY", "ENTERPRISE_API_SECRET_KEY")
 
+    proxies = {
+        "http": None,
+        "https": None,
+    }
+
     @classmethod
     def send_request(cls, method, endpoint, json=None, params=None):
         headers = {"Content-Type": "application/json", "Enterprise-Api-Secret-Key": cls.secret_key}
 
         url = f"{cls.base_url}{endpoint}"
-        response = requests.request(method, url, json=json, params=params, headers=headers)
+        response = requests.request(method, url, json=json, params=params, headers=headers, proxies=cls.proxies)
 
         return response.json()