5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 22:46:23 +00:00

fix: send sucker punch args

This commit is contained in:
f 2023-03-13 20:31:39 -03:00
parent 8a5ecd98f7
commit df3faba784

View file

@ -1,6 +1,6 @@
# frozen_string_literal: true # frozen_string_literal: true
# Enviar una notificación cuando falla una tarea # Enviar una notificación cuando falla una tarea
SuckerPunch.exception_handler = lambda { |ex, _klass, _args| SuckerPunch.exception_handler = lambda { |ex, _, args|
ExceptionNotifier.notify_exception(ex) ExceptionNotifier.notify_exception(ex, data: args)
} }