mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 19:46:22 +00:00
fix: usar perform_later
This commit is contained in:
parent
d5db27ac95
commit
fd56ee4c3e
5 changed files with 5 additions and 5 deletions
|
@ -18,7 +18,7 @@ module Api
|
||||||
|
|
||||||
# Si todo salió bien, enviar los correos y redirigir al sitio.
|
# Si todo salió bien, enviar los correos y redirigir al sitio.
|
||||||
# El sitio nos dice a dónde tenemos que ir.
|
# El sitio nos dice a dónde tenemos que ir.
|
||||||
ContactJob.perform_async site.id,
|
ContactJob.perform_later site.id,
|
||||||
params[:form],
|
params[:form],
|
||||||
contact_params.to_h.symbolize_keys,
|
contact_params.to_h.symbolize_keys,
|
||||||
params[:redirect]
|
params[:redirect]
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
# bundle exec rails c
|
# bundle exec rails c
|
||||||
# m = Maintenance.create message_en: 'reason', message_es: 'razón',
|
# m = Maintenance.create message_en: 'reason', message_es: 'razón',
|
||||||
# estimated_from: Time.now, estimated_to: Time.now + 1.hour
|
# estimated_from: Time.now, estimated_to: Time.now + 1.hour
|
||||||
# MaintenanceJob.perform_async(maintenance_id: m.id)
|
# MaintenanceJob.perform_later(maintenance_id: m.id)
|
||||||
#
|
#
|
||||||
# Lo mismo para salir de mantenimiento, agregando el atributo
|
# Lo mismo para salir de mantenimiento, agregando el atributo
|
||||||
# are_we_back: true al crear el Maintenance.
|
# are_we_back: true al crear el Maintenance.
|
||||||
|
|
|
@ -11,7 +11,7 @@ module ExceptionNotifier
|
||||||
# @param [Exception]
|
# @param [Exception]
|
||||||
# @param [Hash]
|
# @param [Hash]
|
||||||
def call(exception, **options)
|
def call(exception, **options)
|
||||||
GitlabNotifierJob.perform_async(exception, **options)
|
GitlabNotifierJob.perform_later(exception, **options)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -11,7 +11,7 @@ class LogEntry < ApplicationRecord
|
||||||
def resend
|
def resend
|
||||||
return if sent
|
return if sent
|
||||||
|
|
||||||
ContactJob.perform_async site_id, params[:form], params
|
ContactJob.perform_later site_id, params[:form], params
|
||||||
end
|
end
|
||||||
|
|
||||||
def params
|
def params
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
|
SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
|
||||||
def deploy
|
def deploy
|
||||||
site.enqueue!
|
site.enqueue!
|
||||||
DeployJob.perform_async site.id
|
DeployJob.perform_later site.id
|
||||||
end
|
end
|
||||||
|
|
||||||
# Crea un sitio, agrega un rol nuevo y guarda los cambios a la
|
# Crea un sitio, agrega un rol nuevo y guarda los cambios a la
|
||||||
|
|
Loading…
Reference in a new issue