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 59eb8fe + 5e7a3ef commit 7763bceCopy full SHA for 7763bce
sagemaker-serve/src/sagemaker/serve/model_server/triton/model.py
@@ -3,7 +3,6 @@
3
from __future__ import absolute_import
4
import os
5
import logging
6
-import ssl
7
from pathlib import Path
8
import platform
9
@@ -13,10 +12,6 @@
13
12
14
logger = logging.getLogger(__name__)
15
16
-# Otherwise it will complain SSL: CERTIFICATE_VERIFY_FAILED
17
-# When trying to download models from torchvision
18
-ssl._create_default_https_context = ssl._create_unverified_context
19
-
20
TRITON_MODEL_DIR = os.getenv("TRITON_MODEL_DIR")
21
22
0 commit comments