diff options
| author | Frederick Muriuki Muriithi | 2026-05-20 12:44:47 -0500 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-05-20 12:44:47 -0500 |
| commit | 3b2b8b74f876802fdea7bc135ace98c6616e6936 (patch) | |
| tree | 32ddb2423bd29235bbabd7c86180e751bbf75af4 | |
| parent | 4f3ca1c854f0cffe99c22765366c8e7b3c3a847b (diff) | |
| download | gn-machines-3b2b8b74f876802fdea7bc135ace98c6616e6936.tar.gz | |
Set loglevel on CI/CD to "debug".
| -rw-r--r-- | genenetwork-development.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/genenetwork-development.scm b/genenetwork-development.scm index 00ef307..03b6b11 100644 --- a/genenetwork-development.scm +++ b/genenetwork-development.scm @@ -575,6 +575,7 @@ server described by CONFIG, a <genenetwork-configuration> object." "--max-requests" "100" "--max-requests-jitter" "30" "--timeout" "1200" + "--log-level" "debug" "gn2.wsgi"))))))) (define (genenetwork3-cd-gexp config) @@ -644,7 +645,8 @@ server described by CONFIG, a <genenetwork-configuration> object." ;; gunicorn's default 30 second timeout is ;; insufficient for Fahamu AI endpoints and ;; results in worker timeout errors. - "--timeout" "1200")))))))) + "--timeout" "1200" + "--log-level" "debug")))))))) (define (gn-auth-cd-gexp config) "Return a G-expression that runs the latest gn-auth development @@ -708,6 +710,7 @@ server described by CONFIG, a <genenetwork-configuration> object." (invoke #$(file-append gunicorn "/bin/gunicorn") "-b" #$(string-append "localhost:" (number->string gn-auth-port)) "--workers" "8" + "--log-level" "debug" "gn_auth.wsgi:app")))))))) (define (gn-guile-gexp gn-guile-port) |
