gblazex commited on
Commit
ed0fc87
·
1 Parent(s): 3ab53e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -425,9 +425,11 @@ with demo:
425
  show_copy_button=True,
426
  )
427
 
 
 
428
  scheduler = BackgroundScheduler()
429
  scheduler.add_job(restart_space, "interval", seconds=1800)
430
  scheduler.start()
431
  demo.queue(default_concurrency_limit=40).launch()
432
 
433
- print(f"app start time {time.time() - app_start_time:.2f} seconds")
 
425
  show_copy_button=True,
426
  )
427
 
428
+ print(f"app start time {time.time() - app_start_time:.2f} seconds")
429
+
430
  scheduler = BackgroundScheduler()
431
  scheduler.add_job(restart_space, "interval", seconds=1800)
432
  scheduler.start()
433
  demo.queue(default_concurrency_limit=40).launch()
434
 
435
+ print(f"app start after demo.queue {time.time() - app_start_time:.2f} seconds")