We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3febb88 commit b3ee52dCopy full SHA for b3ee52d
crates/stackable-operator/src/eos/mod.rs
@@ -93,7 +93,8 @@ impl EndOfSupportChecker {
93
94
/// Run the end-of-support checker.
95
///
96
- /// It is recommended to run the end-of-support checker via [`futures::try_join!`].
+ /// It is recommended to run the end-of-support checker via [`futures::try_join!`] or
97
+ /// [`tokio::join`] alongside other futures (eg. for controllers).
98
pub async fn run(self) {
99
// Construct an interval which can be polled.
100
let mut interval = tokio::time::interval(self.interval.into());
0 commit comments