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

Commit

Permalink
Fixed lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluard committed Feb 22, 2021
1 parent 0fbb585 commit 4952611
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion backend/src/kubernetes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,11 @@ impl Engine {
.duration
.unwrap_or(self.configuration.session_defaults.duration);

log::info!("Creating session for user {} with template {}", user.id, conf.template);
log::info!(
"Creating session for user {} with template {}",
user.id,
conf.template
);

// Deploy a new pod for this image
pod_api
Expand Down
2 changes: 1 addition & 1 deletion backend/src/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl Manager {
Err(err) => {
warn!("Failed to call get: {}", err);
sessions2.remove(id);
},
}
Ok(None) => warn!("No matching pod: {}", id),
}
}
Expand Down

0 comments on commit 4952611

Please sign in to comment.