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:
Diffstat (limited to 'doc/development/sidekiq_debugging.md')
-rw-r--r--doc/development/sidekiq_debugging.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/development/sidekiq_debugging.md b/doc/development/sidekiq_debugging.md
deleted file mode 100644
index cea11e5f126..00000000000
--- a/doc/development/sidekiq_debugging.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# Sidekiq debugging
-
-## Log arguments to Sidekiq jobs
-
-If you want to see what arguments are being passed to Sidekiq jobs you can set
-the SIDEKIQ_LOG_ARGUMENTS environment variable.
-
-```
-SIDEKIQ_LOG_ARGUMENTS=1 bundle exec foreman start
-```
-
-It is not recommend to enable this setting in production because some Sidekiq
-jobs (such as sending a password reset email) take secret arguments (for
-example the password reset token).