diff options
Diffstat (limited to 'genenetwork-development.scm')
-rw-r--r-- | genenetwork-development.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 5848ae5..9afa8d2 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -520,7 +520,11 @@ server described by CONFIG, a <genenetwork-configuration> object." (show-head-commit) (invoke #$(file-append gunicorn "/bin/gunicorn") "-b" #$(string-append "localhost:" (number->string gn3-port)) - "gn3.app:create_app()")))))))) + "gn3.app:create_app()" + ;; gunicorn's default 30 second timeout is + ;; insufficient for Fahamu AI endpoints and + ;; results in worker timeout errors. + "--timeout" "1200")))))))) (define (gn-auth-cd-gexp config) "Return a G-expression that runs the latest gn-auth development |