Commit 1d7f7dbb authored by James Lowry's avatar James Lowry
Browse files

Fix uninferred String that causes compilation error

parent 8b472c28
Showing with 2 additions and 2 deletions
+2 -2
......@@ -43,8 +43,8 @@ pub fn run_plugin_container(
let auth = serde_json::to_string(&auth)?;
let container_id = format!(
"{}-{}-{}",
pod_owner.chars().take(10).collect(),
container_image.chars().take(15).collect(),
pod_owner.chars().take(10).collect::<String>(),
container_image.chars().take(15).collect::<String>(),
new_random_item_id()
);
if cli_options.use_kubernetes {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment