Skip to content

Commit

Permalink
fix: use single task for message pipelines to ensure ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
sdbondi committed Jul 20, 2023
1 parent 35a221b commit f439bd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/tari_validator_node/src/comms/initializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ fn configure_comms(
.layer(DanBroadcast::new(connectivity, logger1))
.service(sink)
})
.max_concurrent_inbound_tasks(3)
.max_concurrent_outbound_tasks(3)
.max_concurrent_inbound_tasks(1)
.max_concurrent_outbound_tasks(1)
.with_inbound_pipeline(
ServiceBuilder::new()
.layer(DanDeserialize::new(comms.peer_manager(), logger2))
Expand Down

0 comments on commit f439bd7

Please sign in to comment.