Skip to content

Commit 1d115b6

Browse files
committed
Address rubocop unhappiness with single vs. double quoted strings
1 parent cf4e62e commit 1d115b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/models/solid_queue/semaphore.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def attempt_creation_with_create_and_exception_handling
6161
limit == 1 ? false : attempt_decrement
6262
end
6363

64-
if ActiveRecord::Base.connection.adapter_name == 'PostgreSQL'
64+
if ActiveRecord::Base.connection.adapter_name == "PostgreSQL"
6565
alias attempt_creation attempt_creation_with_insert_on_conflict
6666
else
6767
alias attempt_creation attempt_creation_with_create_and_exception_handling

0 commit comments

Comments
 (0)