Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
- Bugfix: when scheduling a pod, `GroupAntiAffinityStrategy` should not skip nodes that are mapped by other pods from different role+group. ([#222])
- BREAKING: `Client::apply_patch` and `Client::apply_patch_status` now take a `context` argument that scopes their fieldManager ([#225])
- Bugfix: `Client::set_condition` now scopes its fieldManager to the condition being applied ([#225])
- Bugfix: removed duplicate object identity from reconciler. ([#228])

### Added
- `command.rs` module to handle common command operations ([#184]).
Expand All @@ -30,6 +31,7 @@ All notable changes to this project will be documented in this file.
[#184]: https://github.com/stackabletech/operator-rs/pull/184
[#222]: https://github.com/stackabletech/operator-rs/pull/222
[#225]: https://github.com/stackabletech/operator-rs/pull/225
[#228]: https://github.com/stackabletech/operator-rs/pull/228

## [0.2.2] - 2021-09-21

Expand Down
6 changes: 1 addition & 5 deletions src/controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,7 @@ where
/// This method contains the logic of reconciling an object (the desired state) we received with the actual state.
#[tracing::instrument(
skip(resource, context),
fields(
resource.name = ?resource.meta().name,
resource.namespace = ?resource.meta().namespace,
request_id = %Uuid::new_v4()
)
fields(request_id = %Uuid::new_v4()),
)]
async fn reconcile<S, T>(
resource: T,
Expand Down