feat(processing_engine): add ':' to matching pattern.
parent
e385e0141d
commit
fbc1a53353
influxdb3_wal/src
|
@ -707,7 +707,7 @@ impl TriggerSpecificationDefinition {
|
|||
schedule: cron_schedule.to_string(),
|
||||
})
|
||||
}
|
||||
s if s.starts_with("every") => {
|
||||
s if s.starts_with("every:") => {
|
||||
let duration_str = s.trim_start_matches("every:").trim();
|
||||
let Ok(duration) = parse_duration(duration_str) else {
|
||||
return Err(Error::TriggerSpecificationParseError {
|
||||
|
|
Loading…
Reference in New Issue