Skip to content

Commit 3d52444

Browse files
authored
Merge pull request #1047 from Mark-Simulacrum/new-sig-default
Use new significance algorithm by default
2 parents 5702e12 + 96c72a9 commit 3d52444

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/src/comparison.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub async fn handle_triage(
4848
"instructions:u".to_owned(),
4949
ctxt,
5050
&master_commits,
51-
body.calcNewSig.unwrap_or(false),
51+
body.calcNewSig.unwrap_or(true),
5252
)
5353
.await
5454
.map_err(|e| format!("error comparing commits: {}", e))?
@@ -103,7 +103,7 @@ pub async fn handle_compare(
103103
body.stat,
104104
ctxt,
105105
&master_commits,
106-
body.calcNewSig.unwrap_or(false),
106+
body.calcNewSig.unwrap_or(true),
107107
)
108108
.await
109109
.map_err(|e| format!("error comparing commits: {}", e))?
@@ -353,7 +353,7 @@ pub async fn compare(
353353
ctxt: &SiteCtxt,
354354
) -> Result<Option<Comparison>, BoxedError> {
355355
let master_commits = collector::master_commits().await?;
356-
compare_given_commits(start, end, stat, ctxt, &master_commits, false).await
356+
compare_given_commits(start, end, stat, ctxt, &master_commits, true).await
357357
}
358358

359359
/// Compare two bounds on a given stat

0 commit comments

Comments
 (0)