Confirmed users
1,351
edits
(Added tips on missing remote debugging) |
(add additional commands to docs) |
||
Line 31: | Line 31: | ||
'''NOTE:''' please log all occurrences in {{bug|bumper_hang_from_git}} so we can track and fix. | '''NOTE:''' please log all occurrences in {{bug|bumper_hang_from_git}} so we can track and fix. | ||
A (relatively) common issue | A (relatively) common issue is the presence of hung processes running git commands; in this case "<tt>kill -hup</tt>" of the hanging process is enough to solve the issues and next scheduled bumper executions run successfully (e.g.: {{bug|1040062}}). To see if this condition exists: | ||
ps flwww -s $(pgrep bumper) | |||
If it does, then note PID of leaf process and: | |||
kill -hup $PID_OF_GIT_PROCESS | |||
Assuming that works, update {{bug|bumper_hang_from_git}} with copy/paste of all output from above. |