5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-10-04 21:56:57 +00:00

Merge branch 'issue-9367' into panel.sutty.nl
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
f 2023-03-29 15:41:38 -03:00
commit fdaef7d3fa
3 changed files with 3 additions and 4 deletions

View file

@ -6,8 +6,6 @@ class BacktraceJob < ApplicationJob
EMPTY_SOURCEMAP = { 'mappings' => '' }.freeze
queue_as :low_priority
attr_reader :params, :site_id
def perform(site_id:, params:)

View file

@ -7,6 +7,9 @@ class DeployJob < ApplicationJob
discard_on ActiveRecord::RecordNotFound
# Lanzar lo antes posible
self.priority = 10
# rubocop:disable Metrics/MethodLength
def perform(site, notify: true, time: Time.now, output: false)
@output = output

View file

@ -10,8 +10,6 @@ class GitlabNotifierJob < ApplicationJob
# Variables que vamos a acceder luego
attr_reader :exception, :options, :issue_data, :cached
queue_as :low_priority
# @param [Exception] la excepción lanzada
# @param [Hash] opciones de ExceptionNotifier
def perform(exception, **options)