From 03f3239cd01565bc53efd49a289846e6558055e8 Mon Sep 17 00:00:00 2001 From: Admin Bot Date: Tue, 15 Sep 2026 02:39:51 +0900 Subject: [PATCH] fix: workflow namespace should be 'temporal' not 'api' The workflow service is deployed in the temporal namespace: temporal-frontend.temporal.svc.cluster.local:7233 Update ServiceAdapter to use correct namespace for workflow routing. --- cmd/gateway/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gateway/main.go b/cmd/gateway/main.go index d19d39e..ca4ab99 100644 --- a/cmd/gateway/main.go +++ b/cmd/gateway/main.go @@ -76,7 +76,7 @@ func main() { // Add workflow service adapter (uses Temporal handler for gRPC forwarding) workflowSpec := serviceadapter.GetWorkflowSpec() workflowAdapter := &serviceadapter.ServiceAdapter{ - Namespace: "api", + Namespace: "temporal", ServiceName: "workflow", Spec: *workflowSpec, }