fix: workflow namespace should be 'temporal' not 'api'
CI / CI (pull_request) Successful in 3m34s

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.
This commit is contained in:
Admin Bot
2026-09-15 02:39:51 +09:00
parent d5c7440655
commit 03f3239cd0
+1 -1
View File
@@ -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,
}