Skip to content

Commit 0fa760f

Browse files
committed
[ci] apply automatic fixes
Signed-off-by: feldera-bot <feldera-bot@feldera.com>
1 parent 301b664 commit 0fa760f

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

crates/adapters/src/controller.rs

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

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::{

openapi.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6793,17 +6793,10 @@
67936793
"type": "object",
67946794
"description": "A checkpoint is currently being written to storage.",
67956795
"required": [
6796-
"sequence_number",
67976796
"started_at",
67986797
"status"
67996798
],
68006799
"properties": {
6801-
"sequence_number": {
6802-
"type": "integer",
6803-
"format": "int64",
6804-
"description": "Sequence number of the in-flight checkpoint.",
6805-
"minimum": 0
6806-
},
68076800
"started_at": {
68086801
"type": "string",
68096802
"format": "date-time",

0 commit comments

Comments
 (0)