Skip to content

Commit

Permalink
remove outdated comment about unstable feature use
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Oct 9, 2024
1 parent 023ecc3 commit c01edb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/node_reflector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async fn main() -> anyhow::Result<()> {
.default_backoff()
.reflect(writer)
.applied_objects()
.predicate_filter(predicates::labels.combine(predicates::annotations)); // NB: requires an unstable feature
.predicate_filter(predicates::labels.combine(predicates::annotations));
let mut stream = pin!(stream);

// Periodically read our state in the background
Expand Down
2 changes: 1 addition & 1 deletion examples/pod_reflector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async fn main() -> anyhow::Result<()> {
})
.reflect(writer)
.applied_objects()
.predicate_filter(predicates::resource_version); // NB: requires an unstable feature
.predicate_filter(predicates::resource_version);
let mut stream = pin!(stream);

while let Some(pod) = stream.try_next().await? {
Expand Down

0 comments on commit c01edb9

Please sign in to comment.