Skip to content

Commit

Permalink
Fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Venkata Challa committed Jan 31, 2024
1 parent 7b5ef20 commit 6719a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
config.force_ssl = true
# Exclude kubernetes healthcheck because it is http only.
config.ssl_options = { redirect: { exclude: -> request { /healthcheck/.match?(request.path) } } }
config.ssl_options = { redirect: { exclude: -> (request) { /healthcheck/.match?(request.path) } } }

# Include generic and useful information about system operation, but avoid logging too much
# information to avoid inadvertent exposure of personally identifiable information (PII).
Expand Down

0 comments on commit 6719a55

Please sign in to comment.