We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e33a396 commit 904c9dbCopy full SHA for 904c9db
src/e2e/provisioned_container.rs
@@ -70,7 +70,7 @@ impl StoppedProvisionedContainer {
70
71
if !output.status.success() {
72
let stderr = String::from_utf8_lossy(&output.stderr);
73
- return Err(anyhow::anyhow!("Docker build failed: {}", stderr));
+ return Err(anyhow::anyhow!("Docker build failed: {stderr}"));
74
}
75
76
info!("Docker image built successfully");
@@ -179,8 +179,7 @@ impl RunningProvisionedContainer {
179
Ok(())
180
181
Err(e) => Err(anyhow::anyhow!(
182
- "Failed to setup SSH keys in container: {}",
183
- e
+ "Failed to setup SSH keys in container: {e}"
184
)),
185
186
0 commit comments