diff --git a/backend/windmill-common/src/worker.rs b/backend/windmill-common/src/worker.rs index 8d03be0bc9..eafd8cd894 100644 --- a/backend/windmill-common/src/worker.rs +++ b/backend/windmill-common/src/worker.rs @@ -197,8 +197,7 @@ lazy_static::lazy_static! { "snowflake".to_string(), "mssql".to_string(), "bigquery".to_string(), - "oracledb".to_string(), - "duckdb".to_string(), + "oracledb".to_string() // for related places search: ADD_NEW_LANG ]; diff --git a/frontend/src/lib/components/worker_group.ts b/frontend/src/lib/components/worker_group.ts index 65879647ea..70f7741bae 100644 --- a/frontend/src/lib/components/worker_group.ts +++ b/frontend/src/lib/components/worker_group.ts @@ -57,7 +57,8 @@ export const defaultTags = [ 'csharp', 'nu', 'java', - 'ruby' + 'ruby', + 'duckdb' // for related places search: ADD_NEW_LANG ] export const nativeTags = [ @@ -68,6 +69,5 @@ export const nativeTags = [ 'snowflake', 'mssql', 'bigquery', - 'oracledb', - 'duckdb' + 'oracledb' ]