waseoke commited on
Commit
1adf4af
·
verified ·
1 Parent(s): 095022d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,7 +4,7 @@ import torch
4
  from torch.nn import Embedding
5
 
6
  # MongoDB Atlas 연결 설정
7
- client = MongoClient("mongodb+srv://waseoke:[email protected]/", ssl=True, ssl_cert_reqs='CERT_NONE')
8
  db = client["패션"]
9
  product_collection = db["여성의류"]
10
 
 
4
  from torch.nn import Embedding
5
 
6
  # MongoDB Atlas 연결 설정
7
+ client = MongoClient("mongodb+srv://waseoke:[email protected]/", tls=True, tlsAllowInvalidCertificates=True)
8
  db = client["패션"]
9
  product_collection = db["여성의류"]
10