From 4f7d7bb939522ddd03a97b5fc26577ba1db15da2 Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Mon, 24 Apr 2023 12:17:38 +0200 Subject: [PATCH] default worker handle other tags --- backend/windmill-queue/src/jobs.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/windmill-queue/src/jobs.rs b/backend/windmill-queue/src/jobs.rs index 30f8cccaa4..ac225f84a3 100644 --- a/backend/windmill-queue/src/jobs.rs +++ b/backend/windmill-queue/src/jobs.rs @@ -61,7 +61,8 @@ lazy_static::lazy_static! { "bash".to_string(), "dependency".to_string(), "flow".to_string(), - "hub".to_string()]); + "hub".to_string(), + "other".to_string()]); pub static ref ACCEPTED_TAGS_FILTER: String = format!(" AND ({})", ACCEPTED_TAGS.clone().into_iter().map(|x| format!("(tag = '{x}')")).join(" OR "));