fix: workflow auth.required=false to match gateway config
CI / CI (push) Failing after 7m52s

Config says auth required: false for workflow service. Code-registered
Spec had Required: true, causing 401 for unauthenticated CI tests.
Match config intent.
This commit is contained in:
Admin Bot
2026-09-15 18:07:22 +09:00
parent bb792d463f
commit f18e6331ea
+1 -1
View File
@@ -190,7 +190,7 @@ func GetWorkflowSpec() *Spec {
TimeoutSeconds: 30,
},
Auth: Auth{
Required: true,
Required: false,
Capability: "workflow:execute",
},
Retryable: true,