Skip to content

Commit 6fdd65f

Browse files
committed
address comments on doc clarity
1 parent 9734a95 commit 6fdd65f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/stage/stage.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use crate::ChannelManager;
2525
/// When an [`ExecutionStage`] is execute()'d if will execute its plan and return a stream
2626
/// of record batches.
2727
///
28-
/// If the stage has input stages, then it those input stages will be executed on remote resources
28+
/// If the stage has input stages, then those input stages will be executed on remote resources
2929
/// and will be provided the remainder of the stage tree.
3030
///
3131
/// For example if our stage tree looks like this:
@@ -70,7 +70,7 @@ use crate::ChannelManager;
7070
///
7171
/// The receiving ArrowFlightEndpoint will then execute Stage 2 and will repeat this process.
7272
///
73-
/// When Stage 4 4 is executed, it has no input tasks, so it is assumed that the plan included in that
73+
/// When Stage 4 is executed, it has no input tasks, so it is assumed that the plan included in that
7474
/// Stage can complete on its own; its likely holding a leaf node in the overall phyysical plan and
7575
/// producing data from a [`DataSourceExec`].
7676
#[derive(Debug, Clone)]

tests/distributed_aggregation.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ mod tests {
1313
use std::error::Error;
1414

1515
#[tokio::test]
16-
#[ignore]
1716
async fn distributed_aggregation() -> Result<(), Box<dyn Error>> {
18-
// FIXME these ports are in use on my machine, we should find unused ports
17+
// FIXME: these ports are in use on my machine, we should find unused ports
1918
// Changed them for now
2019
let (ctx, _guard) =
2120
start_localhost_context([40050, 40051, 40052], NoopSessionBuilder).await;

0 commit comments

Comments
 (0)