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

Commit 4952611

Browse files
committed
Fixed lints
1 parent 0fbb585 commit 4952611

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

backend/src/kubernetes.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,11 @@ impl Engine {
723723
.duration
724724
.unwrap_or(self.configuration.session_defaults.duration);
725725

726-
log::info!("Creating session for user {} with template {}", user.id, conf.template);
726+
log::info!(
727+
"Creating session for user {} with template {}",
728+
user.id,
729+
conf.template
730+
);
727731

728732
// Deploy a new pod for this image
729733
pod_api

backend/src/manager.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl Manager {
105105
Err(err) => {
106106
warn!("Failed to call get: {}", err);
107107
sessions2.remove(id);
108-
},
108+
}
109109
Ok(None) => warn!("No matching pod: {}", id),
110110
}
111111
}

0 commit comments

Comments
 (0)