Skip to content

Commit 9e599cb

Browse files
Fixed SSL verification issue
1 parent 9b6bb3f commit 9e599cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sample_solutions/CodeTranslation/api/services/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class APIClient:
1818
def __init__(self):
1919
self.endpoint = config.INFERENCE_API_ENDPOINT
2020
self.token = config.INFERENCE_API_TOKEN
21-
self.http_client = httpx.Client(verify=False) if self.token else None
21+
self.http_client = httpx.Client() if self.token else None
2222

2323
def get_inference_client(self):
2424
"""

0 commit comments

Comments
 (0)