File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ pub(crate) async fn create_tls_config_and_watch_certificate_changes(
72
72
inotify
73
73
. watches ( )
74
74
. add ( path, inotify:: WatchMask :: CLOSE_WRITE )
75
- . map_err ( |e| anyhow ! ( "Cannot watch client certificate file: {e}" ) )
75
+ . map_err ( |e| anyhow ! ( "Cannot watch client CA file: {e}" ) )
76
76
} )
77
77
. collect ( ) ;
78
78
@@ -109,14 +109,14 @@ pub(crate) async fn create_tls_config_and_watch_certificate_changes(
109
109
110
110
for client_ca_watch in client_ca_watches. iter ( ) {
111
111
if event. wd == * client_ca_watch {
112
- info ! ( "TLS client certificate file has been modified" ) ;
112
+ info ! ( "TLS client CA file has been modified" ) ;
113
113
client_ca_changed = true ;
114
114
}
115
115
}
116
116
117
117
// Reload the client CA certificates if they have changed, keeping the current server certificates unchanged
118
118
if client_ca_changed {
119
- info ! ( "Reloading Client CA certificates" ) ;
119
+ info ! ( "Reloading client CA certificates" ) ;
120
120
121
121
client_ca_changed = false ;
122
122
You can’t perform that action at this time.
0 commit comments