Ramesh-vani commited on
Commit
edee65d
·
verified ·
1 Parent(s): 84294e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -947,7 +947,7 @@ async def main():
947
  loop.add_signal_handler(signal.SIGTERM, stop.set_result, None)
948
 
949
  port = int(os.environ.get("PORT", "7860"))
950
- async with websockets.serve(handler, "0.0.0.0", port,ping_timeout=120):
951
  await stop
952
 
953
 
 
947
  loop.add_signal_handler(signal.SIGTERM, stop.set_result, None)
948
 
949
  port = int(os.environ.get("PORT", "7860"))
950
+ async with websockets.serve(handler, "0.0.0.0", port):
951
  await stop
952
 
953