Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2017-08-24 22:24:58 +0300
committerStan Hu <stanhu@gmail.com>2017-08-24 22:29:50 +0300
commit38bb92197dcb67df917bb9793be5a1a48611c047 (patch)
treee04f83b0d37846f045d21504de69361dd9b746b9 /app/workers/project_export_worker.rb
parent4428944d53232d7c9d620ae483e66fe46f414baf (diff)
Enable 5 lines of Sidekiq backtrace lines to aid in debugging
Customers often have Sidekiq jobs that failed without much context. Without Sentry, there's no way to tell where these exceptions were hit. Adding in additional lines adds a bit more Redis storage overhead. This commit adds in backtrace logging for workers that delete groups/projects and import/export projects. Closes #27626
Diffstat (limited to 'app/workers/project_export_worker.rb')
-rw-r--r--app/workers/project_export_worker.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/workers/project_export_worker.rb b/app/workers/project_export_worker.rb
index 6009aa1b191..f13ac9e5db2 100644
--- a/app/workers/project_export_worker.rb
+++ b/app/workers/project_export_worker.rb
@@ -1,6 +1,7 @@
class ProjectExportWorker
include Sidekiq::Worker
include DedicatedSidekiqQueue
+ include ExceptionBacktrace
sidekiq_options retry: 3