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 8e69f8f commit 9b97777Copy full SHA for 9b97777
rust/krb5-provision-keytab/src/lib.rs
@@ -96,7 +96,7 @@ pub async fn provision_keytab(krb5_config_path: &Path, req: &Request) -> Result<
96
let mut stdin = child
97
.stdin
98
.take()
99
- .expect("Failed to read from stdin of stackable-krb5-provision-keytab script! ");
+ .expect("Failed to read from stdin of stackable-krb5-provision-keytab command! ");
100
stdin.write_all(&req_str).await.context(WriteRequestSnafu)?;
101
stdin.flush().await.context(WriteRequestSnafu)?;
102
drop(stdin);
0 commit comments