Skip to content

Commit

Permalink
chore: fix rubocop warnings in puma config file
Browse files Browse the repository at this point in the history
  • Loading branch information
ericenns committed Feb 21, 2025
1 parent 88a0554 commit c378aac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/puma.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
plugin :tmp_restart

# Run the Solid Queue supervisor inside of Puma for single-server deployments
plugin :solid_queue if ENV["SOLID_QUEUE_IN_PUMA"]
plugin :solid_queue if ENV['SOLID_QUEUE_IN_PUMA']

# Specify the PID file. Defaults to tmp/pids/server.pid in development.
# In other environments, only set the PID file if requested.
pidfile ENV["PIDFILE"] if ENV["PIDFILE"]
pidfile ENV['PIDFILE'] if ENV['PIDFILE']

0 comments on commit c378aac

Please sign in to comment.