We currently define ActiveJob callbacks in a reloadable constant (ApplicationJob). Therefore the callbacks are re-registered on every code reload and cause errors in the job processing because the callbacks aren't intended to run multiple times on the same job.
These callbacks should be moved into an initializer instead.