Skip to content

Commit 02776d7

Browse files
authored
fix: unwatch should be called only if an error occurred during the transaction (#332)
1 parent e0b76c6 commit 02776d7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/redis_client/cluster/optimistic_locking.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ def watch(keys)
1818
@router.handle_redirection(node, retry_count: 1) do |nd|
1919
nd.with do |c|
2020
c.call('WATCH', *keys)
21-
reply = yield(c, slot)
21+
yield(c, slot)
22+
rescue StandardError
2223
c.call('UNWATCH')
23-
reply
24+
raise
2425
end
2526
end
2627
end

0 commit comments

Comments
 (0)