Skip to content

Commit af7bacf

Browse files
authored
Merge pull request #26 from c410-f3r/misc
Lower HTTP/2 parameters
2 parents 7cc40c8 + d2f9f84 commit af7bacf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evaluator/src/http2.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ pub(crate) async fn bench_all(
2525
}};
2626
}
2727
let params = [
28-
case!(("64 bytes", 1), write(1, &[4; 64]).await),
29-
case!(("64 bytes", 16), write(16, &[4; 64]).await),
28+
case!(("32 bytes", 1), write(1, &[4; 32]).await),
29+
case!(("32 bytes", 8), write(8, &[4; 32]).await),
3030
];
3131
manage_cases(generic_rp, rps, params);
3232
Ok(())

0 commit comments

Comments
 (0)