sharktide commited on
Commit
df1fe51
·
verified ·
1 Parent(s): 6a9c565

Update subscriptions.py

Browse files
Files changed (1) hide show
  1. subscriptions.py +1 -1
subscriptions.py CHANGED
@@ -19,7 +19,7 @@ async def get_conn():
19
  global conn
20
 
21
  if conn is None or conn.closed:
22
- conn = psycopg.connect(POSTGRE_SECRET, row_factory=dict_row)
23
 
24
  return conn
25
 
 
19
  global conn
20
 
21
  if conn is None or conn.closed:
22
+ conn = psycopg.connect(POSTGRE_SECRET, row_factory=dict_row, sslmode="verify-full", sslrootcert="prod-ca-2021.crt")
23
 
24
  return conn
25