diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-09-26 11:52:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 11:52:19 -0400 |
commit | 17800a0e9779a1cfd7c9dff79ae331adf8f44f83 (patch) | |
tree | 59ccbb751adf3ee4404bc1cd3f273b9136cb598d /rust/benches | |
parent | Skip export-data on non-code (e.g. docs) PRs (#16387) (diff) | |
download | synapse-17800a0e9779a1cfd7c9dff79ae331adf8f44f83.tar.xz |
Implement MSC4028: push all encrypted events. (#16361)
This unstable push rule is implemented behind an experimental configuration flag.
Diffstat (limited to 'rust/benches')
-rw-r--r-- | rust/benches/evaluator.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/benches/evaluator.rs b/rust/benches/evaluator.rs index 14071105a0..6e1eab2a3b 100644 --- a/rust/benches/evaluator.rs +++ b/rust/benches/evaluator.rs @@ -197,6 +197,7 @@ fn bench_eval_message(b: &mut Bencher) { false, false, false, + false, ); b.iter(|| eval.run(&rules, Some("bob"), Some("person"))); |