Skip to content

Commit 0d29d17

Browse files
committed
Rollback hardcoded client decoded size
1 parent 7c388ea commit 0d29d17

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/execution_plans/network_coalesce.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,6 @@ impl ExecutionPlan for NetworkCoalesceExec {
300300
let stream = async move {
301301
let channel = channel_resolver.get_channel_for_url(&url).await?;
302302
let stream = FlightServiceClient::new(channel)
303-
.max_decoding_message_size(2 * 1024 * 1024 * 1024)
304303
.do_get(ticket)
305304
.await
306305
.map_err(map_status_to_datafusion_error)?

src/execution_plans/network_shuffle.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ impl ExecutionPlan for NetworkShuffleExec {
337337

338338
let channel = channel_resolver.get_channel_for_url(&url).await?;
339339
let stream = FlightServiceClient::new(channel)
340-
.max_decoding_message_size(2 * 1024 * 1024 * 1024)
341340
.do_get(ticket)
342341
.await
343342
.map_err(map_status_to_datafusion_error)?

0 commit comments

Comments
 (0)