Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Commit b7b92c9

Browse files
committed
Missed some rustfmt issues.
1 parent 4a24e79 commit b7b92c9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/provider/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ pub enum StackableError {
4444
)]
4545
MissingConfigMapsError { missing_config_maps: Vec<String> },
4646
#[error("An object received from Kubernetes didn't contain a required field: {field_name}")]
47-
IllegalKubeObject {field_name: String}
47+
IllegalKubeObject { field_name: String },
4848
}

src/provider/states/stopping.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ impl State<PodState> for Stopping {
1717
if let Some(child) = &pod_state.process_handle {
1818
info!(
1919
"Received stop command for service {}, stopping process with pid {}",
20-
pod_state.service_name, child.id()
20+
pod_state.service_name,
21+
child.id()
2122
);
2223
}
2324
Transition::next(self, Stopped)

0 commit comments

Comments
 (0)