Skip to content

Commit a9913ab

Browse files
authored
Merge pull request #2055 from Kobzol/increase-queue-size
Increase the number of finished runs shown in the status page
2 parents 70b08b2 + b66899a commit a9913ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: site/src/request_handlers/status_page.rs

+1-1
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)