Skip to content

Commit 3bb01b0

Browse files
authored
Concurrency Fix (#94)
* Fix concurrency flag * bump version
1 parent 74e5283 commit 3bb01b0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/jsonapi_compliable/configuration.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ def initialize
1919
def experimental_concurrency=(val)
2020
if val && !defined?(Concurrent::Promise)
2121
raise "You must add the concurrent-ruby gem to opt-in to experimental concurrency"
22+
else
23+
@experimental_concurrency = val
2224
end
2325
end
2426
end

lib/jsonapi_compliable/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module JsonapiCompliable
2-
VERSION = "0.11.18"
2+
VERSION = "0.11.19"
33
end

0 commit comments

Comments
 (0)