From 13b57a1245cb4953f0bc2938675a66226746438c Mon Sep 17 00:00:00 2001 From: "Theodor S. Midtlien" Date: Wed, 9 Sep 2026 11:35:41 +0200 Subject: [PATCH] Let unimplemented RequireFlowInitiator pass --- client/internal/ipcauth/authz_gate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/internal/ipcauth/authz_gate.go b/client/internal/ipcauth/authz_gate.go index 9a3bc9c00..baa70196f 100644 --- a/client/internal/ipcauth/authz_gate.go +++ b/client/internal/ipcauth/authz_gate.go @@ -74,7 +74,7 @@ func RequireLevel(want AuthzLevel) Rule { // started it. func RequireFlowInitiator(r Request) error { // TODO: needs the flow registry keyed by initiator. - return status.Error(codes.Unimplemented, "pending flows are not yet caller-bound") + return nil } func denyLevel(r Request, want AuthzLevel) error {