From fee9559b71f820e62562ceb5e7f43cd5c2672015 Mon Sep 17 00:00:00 2001 From: KirIgor Date: Tue, 7 Jul 2026 15:53:33 +0600 Subject: [PATCH 1/2] fix --- lib/umbrellio_utils/large_object.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/umbrellio_utils/large_object.rb b/lib/umbrellio_utils/large_object.rb index 8e43fa7..12df8d7 100644 --- a/lib/umbrellio_utils/large_object.rb +++ b/lib/umbrellio_utils/large_object.rb @@ -42,7 +42,7 @@ def read(*) def delete! run(:lo_unlink, oid) - rescue PG::UndefinedObject + rescue Sequel::DatabaseError # Ignored end From 2c5623a85198f48285133cb4acdd09ee296b8be6 Mon Sep 17 00:00:00 2001 From: KirIgor Date: Tue, 7 Jul 2026 15:53:57 +0600 Subject: [PATCH 2/2] fix --- Gemfile.lock | 2 +- lib/umbrellio_utils/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2821f36..422fede 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - umbrellio-utils (1.14.0) + umbrellio-utils (1.14.1) memery (~> 1) GEM diff --git a/lib/umbrellio_utils/version.rb b/lib/umbrellio_utils/version.rb index f7d8ef7..ef7ec64 100644 --- a/lib/umbrellio_utils/version.rb +++ b/lib/umbrellio_utils/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module UmbrellioUtils - VERSION = "1.14.0" + VERSION = "1.14.1" end