Skip to content

Use new significance algorithm by default #1047

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions site/src/comparison.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub async fn handle_triage(
"instructions:u".to_owned(),
ctxt,
&master_commits,
body.calcNewSig.unwrap_or(false),
body.calcNewSig.unwrap_or(true),
)
.await
.map_err(|e| format!("error comparing commits: {}", e))?
Expand Down Expand Up @@ -103,7 +103,7 @@ pub async fn handle_compare(
body.stat,
ctxt,
&master_commits,
body.calcNewSig.unwrap_or(false),
body.calcNewSig.unwrap_or(true),
)
.await
.map_err(|e| format!("error comparing commits: {}", e))?
Expand Down Expand Up @@ -353,7 +353,7 @@ pub async fn compare(
ctxt: &SiteCtxt,
) -> Result<Option<Comparison>, BoxedError> {
let master_commits = collector::master_commits().await?;
compare_given_commits(start, end, stat, ctxt, &master_commits, false).await
compare_given_commits(start, end, stat, ctxt, &master_commits, true).await
}

/// Compare two bounds on a given stat
Expand Down