File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/stackable-operator/src/utils Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const RESOLVE_CONF_FILE_PATH: &str = "/etc/resolv.conf";
15
15
// fall back to defaults instead? Also trace the errors
16
16
#[ derive( Debug , Snafu ) ]
17
17
pub enum Error {
18
- #[ snafu( display( "failed to read resolv.conf " ) ) ]
18
+ #[ snafu( display( "failed to read resolv config from {RESOLVE_CONF_FILE_PATH} " ) ) ]
19
19
ReadResolvConfFile { source : std:: io:: Error } ,
20
20
21
21
#[ snafu( display( "failed to parse {cluster_domain:?} as domain name" ) ) ]
@@ -35,7 +35,7 @@ pub enum Error {
35
35
///
36
36
/// 1. Return `KUBERNETES_CLUSTER_DOMAIN` if set, otherwise
37
37
/// 2. Return the cluster domain parsed from the `/etc/resolv.conf` file if `KUBERNETES_SERVICE_HOST`
38
- /// is set, otherwise fall back to `cluster.local`. cluster.
38
+ /// is set, otherwise fall back to `cluster.local`.
39
39
///
40
40
/// This variable is initialized in [`crate::client::initialize_operator`], which is called in the
41
41
/// main function. It can be used as suggested below.
You can’t perform that action at this time.
0 commit comments