Reduce max-age for the latest-processed-commit page

As this shouldn't be cached for a day.
This commit is contained in:
Christopher Baines 2024-06-12 16:54:35 +01:00
parent d74422c268
commit a9dbeb5e09
2 changed files with 12 additions and 4 deletions

View file

@ -267,7 +267,8 @@
#:path-base path
#:header-text
`("Latest processed revision for branch "
(samp ,branch-name)))
(samp ,branch-name))
#:max-age 60)
(render-no-latest-revision mime-types
repository-id
branch-name))))

View file

@ -446,7 +446,8 @@
commit-hash
#:key path-base
(header-text
`("Revision " (samp ,commit-hash))))
`("Revision " (samp ,commit-hash)))
(max-age cache-control-default-max-age))
(letpar& ((packages-count
(with-resource-from-pool (connection-pool) conn
(count-packages-in-revision conn commit-hash)))
@ -484,7 +485,10 @@
(network_dependent . ,(string=? network-dependent "t"))
(count . ,(string->number count))))))
lint-warning-counts)))
#:extra-headers http-headers-for-unchanging-content))
#:extra-headers
`((cache-control
. (public
(max-age . ,max-age))))))
(else
(render-html
#:sxml (view-revision
@ -496,7 +500,10 @@
lint-warning-counts
#:path-base path-base
#:header-text header-text)
#:extra-headers http-headers-for-unchanging-content)))))
#:extra-headers
`((cache-control
. (public
(max-age . ,max-age)))))))))
(define* (render-revision-system-tests mime-types
commit-hash