diff options
author | Christopher Baines <mail@cbaines.net> | 2024-06-19 14:16:22 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-06-19 17:03:08 +0100 |
commit | f6dcb27d3fe8f20c7f4db975d5ac7a5df375a4f7 (patch) | |
tree | aeefa5c5fe79f119ebf86e90dbf8ebcb337d1e70 /guix-build-coordinator/datastore/abstract.scm | |
parent | 07dc4f9ac99aa6def909f25c792207e4154180f6 (diff) | |
download | build-coordinator-f6dcb27d3fe8f20c7f4db975d5ac7a5df375a4f7.tar build-coordinator-f6dcb27d3fe8f20c7f4db975d5ac7a5df375a4f7.tar.gz |
Move the allocation plan in to memory
Rather than using an in memory SQLite table, since I think this might be
causing issues when opening new SQLite reader threads.
Diffstat (limited to 'guix-build-coordinator/datastore/abstract.scm')
-rw-r--r-- | guix-build-coordinator/datastore/abstract.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/guix-build-coordinator/datastore/abstract.scm b/guix-build-coordinator/datastore/abstract.scm index 68fc654..799485e 100644 --- a/guix-build-coordinator/datastore/abstract.scm +++ b/guix-build-coordinator/datastore/abstract.scm @@ -9,8 +9,7 @@ datastore-new-agent datastore-new-agent-password datastore-list-agent-builds - datastore-agent-password-exists? - datastore-list-allocation-plan-builds)) + datastore-agent-password-exists?)) (define-class <abstract-datastore> ()) @@ -24,5 +23,3 @@ (define-generic datastore-agent-password-exists?) (define-generic datastore-agent-list-unprocessed-builds) (define-generic datastore-list-agent-builds) -(define-generic datastore-agent-replace-build-allocation-plan) -(define-generic datastore-list-allocation-plan-builds) |