5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 04:41:42 +00:00

fix: duplicar el hash
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
f 2023-06-14 13:39:26 -03:00
parent 83ebdea24b
commit 4064d41855

View file

@ -4,5 +4,5 @@ ActiveJob::Serializers.add_serializers ActiveJob::Serializers::ExceptionSerializ
# Notificar los errores # Notificar los errores
Que.error_notifier = proc do |error, job| Que.error_notifier = proc do |error, job|
ExceptionNotifier.notify_exception(error, data: (job || {})) ExceptionNotifier.notify_exception(error, data: (job.dup || {}))
end end