Skip to content

Commit b66899a

Browse files
committed
Increase the number of finished runs shown in the status page
To help debugging recent failures.
1 parent 37dc976 commit b66899a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/request_handlers/status_page.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::load::SiteCtxt;
88
use database::{ArtifactId, Lookup};
99

1010
// How many historical (finished) runs should be returned from the status API.
11-
const FINISHED_RUN_COUNT: u64 = 5;
11+
const FINISHED_RUN_COUNT: u64 = 25;
1212

1313
pub async fn handle_status_page(ctxt: Arc<SiteCtxt>) -> status::Response {
1414
let missing = ctxt.missing_commits().await;

0 commit comments

Comments
 (0)