go-vise

Constrained Size Output Virtual Machine
Info | Log | Files | Refs | README | LICENSE

commit 8b84f59792ceebda96088fe29ddf59a955ce5d3a
parent e55cf9bcb7d28697d15cd5cf4f86ef83f25b27b5
Author: lash <dev@holbrook.no>
Date:   Fri, 25 Apr 2025 07:17:48 -0600

Remove rollback on missing key

Diffstat:
Mdb/postgres/pg.go | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/db/postgres/pg.go b/db/postgres/pg.go @@ -210,7 +210,6 @@ func (pdb *pgDb) Get(ctx context.Context, key []byte) ([]byte, error) { if !rs.Next() { rs.Close() - pdb.Abort(ctx) return nil, db.NewErrNotFound(key) }