From c41d3e2b5ebbf264725644b7c277cad6d7d11ff1 Mon Sep 17 00:00:00 2001 From: John Hogenmiller Date: Sun, 4 Jan 2026 20:29:54 -0500 Subject: [PATCH] fix: bd ready now shows in_progress issues (#894) The RPC server's handleReady() was explicitly setting Status to StatusOpen, which overrode the intended behavior where an empty Status field matches both 'open' and 'in_progress' issues. Removed the Status field assignment so it remains empty (zero value), allowing the SQLite storage layer to correctly return both statuses as documented in the help text. Fixes #5aml --- internal/rpc/server_issues_epics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/rpc/server_issues_epics.go b/internal/rpc/server_issues_epics.go index 761dbee5..eb0cf674 100644 --- a/internal/rpc/server_issues_epics.go +++ b/internal/rpc/server_issues_epics.go @@ -1610,7 +1610,7 @@ func (s *Server) handleReady(req *Request) Response { } wf := types.WorkFilter{ - Status: types.StatusOpen, + // Leave Status empty to get both 'open' and 'in_progress' (GH#5aml) Type: readyArgs.Type, Priority: readyArgs.Priority, Unassigned: readyArgs.Unassigned,