brunneis commited on
Commit
649b643
1 Parent(s): 729427c

Set allowed_paths

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -210,4 +210,6 @@ with demo:
210
  scheduler = BackgroundScheduler()
211
  scheduler.add_job(restart_space, "interval", seconds=1800)
212
  scheduler.start()
213
- demo.queue(default_concurrency_limit=40).launch(allowed_paths=["images/*"])
 
 
 
210
  scheduler = BackgroundScheduler()
211
  scheduler.add_job(restart_space, "interval", seconds=1800)
212
  scheduler.start()
213
+ demo.queue(default_concurrency_limit=40).launch(
214
+ allowed_paths=["images/solbench.svg"],
215
+ )