Skip to content

Commit 76319b0

Browse files
Convert the format of the Vector configuration from TOML to YAML (#670)
* Convert Vector configuration from TOML to YAML * Fix clippy warnings * Update changelog
1 parent 76b8b18 commit 76319b0

File tree

3 files changed

+325
-305
lines changed

3 files changed

+325
-305
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

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+
713
## [0.54.0] - 2023-10-10
814

915
### Changed

src/builder/event.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,6 @@ mod tests {
153153

154154
assert!(matches!(event.involved_object.kind, Some(pod_name) if pod_name == "Pod"));
155155
assert!(matches!(event.message, Some(message) if message == "message"));
156-
assert!(matches!(event.reason, None));
156+
assert!(event.reason.is_none());
157157
}
158158
}

0 commit comments

Comments
 (0)