Upping default timeout to 360 from 180

This commit is contained in:
Devin Matte 2020-12-21 14:25:53 -05:00
parent d48a4cf90a
commit 2500567ee5

View file

@ -59,7 +59,7 @@ ssh_tunnels = []
auth = get_auth(app)
redis_conn = Redis(app.config['REDIS_HOST'], app.config['REDIS_PORT'])
q = Queue(connection=redis_conn)
q = Queue(connection=redis_conn, default_timeout=360)
scheduler = Scheduler(connection=redis_conn)
engine = create_engine(app.config['SQLALCHEMY_DATABASE_URI'])