diff options
author | Christopher Baines <mail@cbaines.net> | 2023-10-16 10:02:30 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2023-10-16 10:02:30 +0100 |
commit | a5f56845af7b51d6f968dc3824cfea84671126ec (patch) | |
tree | 01b820df2c3ad8b9b1e5aba0e294b54b72eb30bd | |
parent | 99e3e45eea6957260798fecba4a692f297cec309 (diff) | |
download | qa-frontpage-a5f56845af7b51d6f968dc3824cfea84671126ec.tar qa-frontpage-a5f56845af7b51d6f968dc3824cfea84671126ec.tar.gz |
Improve cache clearing when recreating issue branches
-rw-r--r-- | guix-qa-frontpage/manage-patch-branches.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm index 61984ca..56155f5 100644 --- a/guix-qa-frontpage/manage-patch-branches.scm +++ b/guix-qa-frontpage/manage-patch-branches.scm @@ -152,8 +152,9 @@ (define (clear-cache) (clear-sqlite-cache-entry database - 'issue-branch-base-and-target-refs - #:args (list issue-number)) + 'issue-data + #:args (list issue-number) + #:version 3) (clear-sqlite-cache-entry database 'issue-patches-overall-status |