Skip to content

Commit

Permalink
no need for send + static
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Oct 9, 2023
1 parent 22b95c5 commit f9d3942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kube-runtime/src/controller/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ where
/// # let client: Client = todo!();
/// # async fn reconcile(_: Arc<ConfigMap>, _: Arc<()>) -> Result<Action, Error> { Ok(Action::await_change()) }
/// # fn error_policy(_: Arc<ConfigMap>, _: &kube::Error, _: Arc<()>) -> Action { Action::await_change() }
/// # fn watch_external_objects() -> impl Stream<Item = ExternalObject> + Send + 'static { stream::iter(vec![]) }
/// # fn watch_external_objects() -> impl Stream<Item = ExternalObject> { stream::iter(vec![]) }
/// # let ns = "controller-ns".to_string();
/// struct ExternalObject {
/// name: String,
Expand Down

0 comments on commit f9d3942

Please sign in to comment.