We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76b8b18 commit 76319b0Copy full SHA for 76319b0
CHANGELOG.md
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
5
## [Unreleased]
6
7
+### Changed
8
+
9
+- Convert the format of the Vector configuration from TOML to YAML ([#670]).
10
11
+[#670]: https://github.com/stackabletech/operator-rs/pull/670
12
13
## [0.54.0] - 2023-10-10
14
15
### Changed
src/builder/event.rs
@@ -153,6 +153,6 @@ mod tests {
153
154
assert!(matches!(event.involved_object.kind, Some(pod_name) if pod_name == "Pod"));
155
assert!(matches!(event.message, Some(message) if message == "message"));
156
- assert!(matches!(event.reason, None));
+ assert!(event.reason.is_none());
157
}
158
0 commit comments