diff options
author | Stan Hu <stanhu@gmail.com> | 2016-06-12 19:13:14 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2016-06-12 20:09:25 -0700 |
commit | ec7cdc18c875a06686ff575d0d3b1dcb0a0e6d35 (patch) | |
tree | 79d2a85b7c8e8a7da61b71d9e300e73bbefd1146 /doc/administration/troubleshooting | |
parent | 8d243f9bdacea1909bf503eb715bd437c3b48aa7 (diff) | |
download | gitlab-ce-ec7cdc18c875a06686ff575d0d3b1dcb0a0e6d35.tar.gz |
Fix typo in obtaining a backtrace from all threads in gdb
Also add command to turn off pagination
[ci skip]
Diffstat (limited to 'doc/administration/troubleshooting')
-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 |