Skip to content

Commit

Permalink
adjust limits
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonoughe committed May 16, 2020
1 parent 98fcf95 commit ad9b183
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,11 @@ async fn handle_message(
}
}

#[tokio::main]
#[tokio::main(max_threads=1)]
async fn main() {
let params = &RegistrationParams::from_args(env::args()).unwrap();

let (mut out_sink, mut out_stream) = mpsc::channel(1);
let (mut out_sink, mut out_stream) = mpsc::channel(2);
let mut state = RawState {
output: None,
contexts: BTreeSet::new(),
Expand Down

0 comments on commit ad9b183

Please sign in to comment.