Skip to content

Commit f20958d

Browse files
author
Меркушин Михаил Сергеевич
committed
Merge branch 'feat/DEX-2706/postgis' into 'master'
[DEX-2706] fix: support postgis database type when deleting stale items Closes DEX-2706 See merge request nstmrt/rubygems/outbox!106
2 parents 91ab1ae + 91311f4 commit f20958d

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1313

1414
### Fixed
1515

16+
## [6.10.4] - 2024-10-29
17+
18+
### Fixed
19+
20+
- fix deleting stale items from Postgis
21+
1622
## [6.10.3] - 2024-10-22
1723

1824
### Fixed

app/jobs/sbmt/outbox/base_delete_stale_items_job.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def mysql_delete_in_batches(waterline)
148148
def database_type
149149
adapter_name = item_class.connection.adapter_name.downcase
150150
case adapter_name
151-
when "postgresql"
151+
when "postgresql", "postgis"
152152
:postgresql
153153
when "mysql2"
154154
:mysql

lib/sbmt/outbox/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Sbmt
44
module Outbox
5-
VERSION = "6.10.3"
5+
VERSION = "6.10.4"
66
end
77
end

0 commit comments

Comments
 (0)