Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix RuntimeError in Lograge::Formatters::Graylog2
Rubocop auto-corrected `data_clone.each.keys` to `data_clone.each_key` which resulted in the following error: RuntimeError: can't add a new key into hash during iteration To fix this, we use Hash#transform_keys (introduced in Ruby 2.5.0).
- Loading branch information