File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/cipherstash-proxy/src/proxy/zerokms Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ pub use zerokms::ZeroKms;
55
66use crate :: config:: TandemConfig ;
77use crate :: error:: { Error , ZeroKMSError } ;
8+ use crate :: log:: ZEROKMS ;
89use cipherstash_client:: {
910 zerokms:: { ClientKey , ZeroKMSBuilder } ,
1011 AutoStrategy , ZeroKMS ,
@@ -20,7 +21,7 @@ pub(crate) fn init_zerokms_client(config: &TandemConfig) -> Result<ZerokmsClient
2021 . with_workspace_crn ( config. auth . workspace_crn . clone ( ) )
2122 . detect ( )
2223 . map_err ( |e| {
23- tracing:: warn!( target: "zerokms" , msg = "ZeroKMS authentication strategy detection failed" , error = %e) ;
24+ tracing:: warn!( target: ZEROKMS , msg = "ZeroKMS authentication strategy detection failed" , error = %e) ;
2425 ZeroKMSError :: AuthenticationFailed
2526 } ) ?;
2627
You can’t perform that action at this time.
0 commit comments