Skip to content

Commit

Permalink
opt performance
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuxiujia committed Sep 25, 2021
1 parent 731d7c0 commit 048885d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fast_log.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ pub fn init_custom_log(
let mut recvs = vec![];
let mut sends = vec![];
for idx in 0..appenders.len() {
let (s, r) = crossbeam_channel::bounded(log_cup);
let (s, r) = crossbeam_channel::unbounded();
recvs.push(r);
sends.push(s);
}
Expand Down

0 comments on commit 048885d

Please sign in to comment.