Skip to content

Commit 9f168a8

Browse files
committed
[ci] apply automatic fixes
Signed-off-by: feldera-bot <feldera-bot@feldera.com>
1 parent 21c3ba7 commit 9f168a8

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

crates/adapters/src/controller.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3125,9 +3125,7 @@ impl CircuitThread {
31253125
if *self.checkpoint_sender.borrow() != checkpoint_coordination {
31263126
let now_ms = Utc::now().timestamp_millis();
31273127
match &checkpoint_coordination {
3128-
Some(
3129-
CheckpointCoordination::Delayed(_) | CheckpointCoordination::Barriers(_),
3130-
) => {
3128+
Some(CheckpointCoordination::Delayed(_) | CheckpointCoordination::Barriers(_)) => {
31313129
// Only set the delay start time on the first transition
31323130
// into a delayed state (not on subsequent reason changes).
31333131
self.controller
@@ -3153,8 +3151,7 @@ impl CircuitThread {
31533151
.store(0, Ordering::Release);
31543152
}
31553153
}
3156-
self.checkpoint_sender
3157-
.send_replace(checkpoint_coordination);
3154+
self.checkpoint_sender.send_replace(checkpoint_coordination);
31583155
}
31593156
}
31603157

crates/adapters/src/server.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ use feldera_types::completion_token::{
6161
};
6262
use feldera_types::constants::STATUS_FILE;
6363
use feldera_types::coordination::{
64-
AdHocScan, CoordinationActivate, CoordinationStatus, Labels,
65-
RestartArgs, Step, StepRequest,
64+
AdHocScan, CoordinationActivate, CoordinationStatus, Labels, RestartArgs, Step, StepRequest,
6665
};
6766
use feldera_types::pipeline_diff::PipelineDiff;
6867
use feldera_types::query_params::{

0 commit comments

Comments
 (0)