feat(processing_engine): add ':' to matching pattern.

feat/every_plugin_schedule
Jackson Newhouse 2025-01-22 23:42:25 -08:00
parent e385e0141d
commit fbc1a53353
1 changed files with 1 additions and 1 deletions
influxdb3_wal/src

View File

@ -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 {