Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit e435b50

Browse files
committed
Switching default FCP to 10 days (per rust-lang#86).
Former-commit-id: 2eb16f7
1 parent 7751f6e commit e435b50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/github/nag.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ fn evaluate_nags() -> DashResult<()> {
154154
}
155155

156156
// look for any FCP proposals that entered FCP a week or more ago but aren't marked as closed
157-
let one_week_ago = UTC::now().naive_utc() - Duration::weeks(1);
158-
let finished_fcps = fcp_proposal.filter(fcp_start.le(one_week_ago))
157+
let one_business_week_ago = UTC::now().naive_utc() - Duration::days(10);
158+
let finished_fcps = fcp_proposal.filter(fcp_start.le(one_business_week_ago))
159159
.filter(fcp_closed.eq(false))
160160
.load::<FcpProposal>(conn)?;
161161

0 commit comments

Comments
 (0)