You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log_arguments option added in Rails 6.0.1 (or 6.0.2?): rails/rails#37660
Job arguments are logged by default, meaning sensitive job arguments (e.g. tokens, passwords, PII) could be written to logs.
Avoid this by setting log_arguments to false by default in ApplicationJob. If you need to re-enable logging in a particular job, it can be done in that job's class.
log_arguments
option added in Rails 6.0.1 (or 6.0.2?): rails/rails#37660Job arguments are logged by default, meaning sensitive job arguments (e.g. tokens, passwords, PII) could be written to logs.
Avoid this by setting
log_arguments
tofalse
by default inApplicationJob
. If you need to re-enable logging in a particular job, it can be done in that job's class.The text was updated successfully, but these errors were encountered: