diff options
author | Stan Hu <stanhu@gmail.com> | 2016-06-14 23:52:47 +0000 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-06-14 23:52:47 +0000 |
commit | db6a75c23af7f1dbced6bb088b64215156acdee9 (patch) | |
tree | 84dad3204bc4c12b41a8313a38d5d674881f83e2 /doc/administration | |
parent | 27f75cf4a870c01682b9d76c46b23b7a3e1e0339 (diff) | |
parent | ec7cdc18c875a06686ff575d0d3b1dcb0a0e6d35 (diff) | |
download | gitlab-ce-db6a75c23af7f1dbced6bb088b64215156acdee9.tar.gz |
Merge branch 'fix-sidekiq-troubleshooting' into 'master'
Fix typo in obtaining a backtrace from all threads in gdb
See merge request !4612
Diffstat (limited to 'doc/administration')
-rw-r--r-- | doc/administration/troubleshooting/sidekiq.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/administration/troubleshooting/sidekiq.md b/doc/administration/troubleshooting/sidekiq.md index a776cd3f05e..b71f8fabbc8 100644 --- a/doc/administration/troubleshooting/sidekiq.md +++ b/doc/administration/troubleshooting/sidekiq.md @@ -147,7 +147,8 @@ bt To output a backtrace from all threads at once: ``` -apply all thread bt +set pagination off +thread apply all bt ``` Once you're done debugging with `gdb`, be sure to detach from the process and |