diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-06-17 14:42:24 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-06-17 14:42:24 -0700 |
commit | 7b5f7ef63e91e714457dfa40d9b71864228aff2c (patch) | |
tree | eb28b7f8c6bd6763b0f5771d92a5ae598b259004 /sites/www/faq.rst | |
parent | 33981bd838a5c396fe561ce98fe1ea7d5e27b316 (diff) | |
parent | b3342c9ff2d75bc8e4ada312e68bf392eb962554 (diff) |
Merge branch '1.16' into 1.17
Diffstat (limited to 'sites/www/faq.rst')
-rw-r--r-- | sites/www/faq.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sites/www/faq.rst b/sites/www/faq.rst index a5d9b383..74b7501e 100644 --- a/sites/www/faq.rst +++ b/sites/www/faq.rst @@ -24,3 +24,13 @@ However, **closed does not imply locked** - affected users can still post comments on such tickets - and **we will always consider actual patch submissions for these issues**, provided they can get +1s from similarly affected users and are proven to not break existing functionality. + +I'm having strange issues with my code hanging at shutdown! +=========================================================== + +Make sure you explicitly ``.close()`` your connection objects (usually +``SSHClient``) if you're having any sort of hang/freeze at shutdown time! + +Doing so isn't strictly necessary 100% of the time, but it is almost always the +right solution if you run into the various corner cases that cause race +conditions, etc. |