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 38a60f6 commit 2bb8dffCopy full SHA for 2bb8dff
rust/operator-binary/src/connect/common.rs
@@ -34,6 +34,11 @@ pub enum Error {
34
JvmSecurityProperties {
35
source: product_config::writer::PropertiesWriterError,
36
},
37
+
38
+ #[snafu(display("failed to serialize metrics properties",))]
39
+ MetricsProperties {
40
+ source: product_config::writer::PropertiesWriterError,
41
+ },
42
}
43
44
pub(crate) fn labels<'a, T>(
@@ -149,5 +154,5 @@ pub(crate) fn metrics_properties(
149
154
);
150
155
151
156
152
- to_java_properties_string(result.iter()).context(JvmSecurityPropertiesSnafu)
157
+ to_java_properties_string(result.iter()).context(MetricsPropertiesSnafu)
153
158
0 commit comments