Skip to content

Commit f44778c

Browse files
committed
rustfmt
1 parent 95e2e76 commit f44778c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • rust/krb5-provision-keytab/src

rust/krb5-provision-keytab/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ pub async fn provision_keytab(krb5_config_path: &Path, req: &Request) -> Result<
100100
// a failure here has some fundamental reason like us taking ownership of the pipe
101101
// earlier, which is most probably more a coding than a runtime error - this is
102102
// why this error is not handled here, but we panic instead
103-
.expect("Failed to take ownership of stdin pipe of stackable-krb5-provision-keytab command! ");
103+
.expect(
104+
"Failed to take ownership of stdin pipe of stackable-krb5-provision-keytab command! ",
105+
);
104106
stdin.write_all(&req_str).await.context(WriteRequestSnafu)?;
105107
stdin.flush().await.context(WriteRequestSnafu)?;
106108
drop(stdin);

0 commit comments

Comments
 (0)