This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository data-service.

The following commit(s) were added to refs/heads/master by this push:
     new cc61bb5  Drop the chunk size when gathering lint warnings
cc61bb5 is described below

commit cc61bb5f1307446d72a0b2fee56e364ceaff8e65
Author: Christopher Baines <[email protected]>
AuthorDate: Mon Nov 14 09:26:59 2022 +0000

    Drop the chunk size when gathering lint warnings
    
    To try and bring the peak memory usage down.
---
 guix-data-service/jobs/load-new-guix-revision.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix-data-service/jobs/load-new-guix-revision.scm 
b/guix-data-service/jobs/load-new-guix-revision.scm
index 5030576..57f5eb1 100644
--- a/guix-data-service/jobs/load-new-guix-revision.scm
+++ b/guix-data-service/jobs/load-new-guix-revision.scm
@@ -648,7 +648,7 @@ WHERE job_id = $1")
               (with-time-logging (simple-format #f "getting ~A lint warnings"
                                                 name)
                 (let loop ((packages-chunks
-                            (chunk packages 4000))
+                            (chunk packages 3000))
                            (warnings '()))
 
                   (if (null? packages-chunks)

Reply via email to