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 f5b7ecd commit a92fc31Copy full SHA for a92fc31
crates/stackable-operator/src/eos/mod.rs
@@ -36,7 +36,11 @@ pub struct EndOfSupportOptions {
36
37
impl EndOfSupportOptions {
38
fn default_interval() -> Duration {
39
- Duration::from_days_unchecked(1)
+ if cfg!(debug_assertions) {
40
+ Duration::from_secs(30)
41
+ } else {
42
+ Duration::from_days_unchecked(1)
43
+ }
44
}
45
46
fn default_support_duration() -> Duration {
0 commit comments