mpsk commited on
Commit
7c53fde
β€’
1 Parent(s): ccfbcda

comment out assertion on client alive to test

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def init_db():
40
  """
41
  client = Client(url=st.secrets["DB_URL"], user=st.secrets["USER"], password=st.secrets["PASSWD"])
42
  # We can check if the connection is alive
43
- assert client.is_alive()
44
  meta_field = {}
45
  return meta_field, client
46
 
 
40
  """
41
  client = Client(url=st.secrets["DB_URL"], user=st.secrets["USER"], password=st.secrets["PASSWD"])
42
  # We can check if the connection is alive
43
+ # assert client.is_alive()
44
  meta_field = {}
45
  return meta_field, client
46