File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -498,10 +498,10 @@ fn import_system_truststore(destination_directory: &str) -> String {
498498/// into a new truststore with password in a writeable empty dir
499499///
500500/// # Arguments
501- /// - `source_directory` - The directory of the source truststore.
502- /// Should usually be a secret operator volume mount.
503- /// - `destination_directory` - The directory of the destination truststore.
504- /// Should usually be an empty dir.
501+ /// - `source_directory`: The directory of the source truststore. Should usually be a secret
502+ /// operator volume mount.
503+ /// - `destination_directory`: The directory of the destination truststore. Should usually be an
504+ /// empty dir.
505505fn import_truststore ( source_directory : & str , destination_directory : & str ) -> String {
506506 let source_truststore_path = format ! ( "{source_directory}/truststore.p12" ) ;
507507 let dest_truststore_path = format ! ( "{destination_directory}/truststore.p12" ) ;
Original file line number Diff line number Diff line change 1+ // TODO: Look into how to properly resolve `clippy::large_enum_variant`.
2+ // This will need changes in our and upstream error types.
3+ #![ allow( clippy:: result_large_err) ]
4+
15use std:: sync:: Arc ;
26
37use clap:: Parser ;
You can’t perform that action at this time.
0 commit comments