Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dqhl76 committed Sep 5, 2024
1 parent 2a9a7c5 commit a695a7d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ impl QueryCoordinator {
target: String,
begin: usize,
) -> Result<FlightDataAckStream> {
let (tx, rx) = async_channel::bounded(8);
let (tx, rx) = async_channel::unbounded();
let identifier = ExchangeIdentifier::Statistics(target);

match self.exchanges.entry(identifier) {
Expand Down Expand Up @@ -706,7 +706,7 @@ impl QueryCoordinator {
fragment: usize,
begin: usize,
) -> Result<FlightDataAckStream> {
let (tx, rx) = async_channel::bounded(8);
let (tx, rx) = async_channel::unbounded();
let identifier = ExchangeIdentifier::fragment_sender(target, fragment);

match self.exchanges.entry(identifier) {
Expand Down

0 comments on commit a695a7d

Please sign in to comment.