From 1f2014568fcdb24bc88695431ae2a7df4d2fffc0 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 14 Mar 2026 21:43:41 -0700 Subject: [PATCH] fix(mini): use "all" job type for plugin worker (#8634) The mini command previously hardcoded a list of specific job types (vacuum, volume_balance, erasure_coding, admin_script). Use the "all" category instead so that newly registered handlers are automatically picked up without requiring changes to the mini command. --- weed/command/mini.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/command/mini.go b/weed/command/mini.go index c3a5fa447..ad933399e 100644 --- a/weed/command/mini.go +++ b/weed/command/mini.go @@ -45,7 +45,7 @@ const ( defaultMiniVolumeSizeMB = 128 // Default volume size for mini mode maxVolumeSizeMB = 1024 // Maximum volume size in MB (1GB) GrpcPortOffset = 10000 // Offset used to calculate gRPC port from HTTP port - defaultMiniPluginJobTypes = "vacuum,volume_balance,erasure_coding,admin_script" + defaultMiniPluginJobTypes = "all" ) var (