Skip to content

Commit d3ff6de

Browse files
committed
Merge branch 'feat/DEX-2629/change-DEFAULT_PARTITION_STRATEGY-to-string' into 'master'
[DEX-2629] feat: change to string Closes DEX-2629 See merge request nstmrt/rubygems/outbox!104
2 parents 93467c2 + 661cc32 commit d3ff6de

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.2] - 2024-09-30
17+
18+
### Fixed
19+
20+
- change `DEFAULT_PARTITION_STRATEGY` to string
21+
1622
## [6.10.1] - 2024-09-23
1723

1824
### Fixed

app/models/sbmt/outbox/base_item_config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def retry_strategies
7474
def partition_strategy
7575
return @partition_strategy if defined?(@partition_strategy)
7676

77-
str_name = options.fetch(:partition_strategy, DEFAULT_PARTITION_STRATEGY)
77+
str_name = options.fetch(:partition_strategy, DEFAULT_PARTITION_STRATEGY).to_s
7878
@partition_strategy = "Sbmt::Outbox::PartitionStrategies::#{str_name.camelize}Partitioning".constantize
7979
end
8080

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.1"
5+
VERSION = "6.10.2"
66
end
77
end

0 commit comments

Comments
 (0)