Merge lp:~clay-gerrard/swift/st_help_hangs into lp:~hudson-openstack/swift/trunk

Proposed by clayg
Status: Merged
Approved by: Jay Payne
Approved revision: 210
Merged at revision: 210
Proposed branch: lp:~clay-gerrard/swift/st_help_hangs
Merge into: lp:~hudson-openstack/swift/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
bin/st (+1/-1)
To merge this branch: bzr merge lp:~clay-gerrard/swift/st_help_hangs
Reviewer Review Type Date Requested Status
Jay Payne (community) Approve
Review via email: mp+48688@code.launchpad.net

Commit message

fix st <command> --help hangs

Description of the change

fix st <command> --help hangs

To post a comment you must log in.
Revision history for this message
Jay Payne (letterj) wrote :

Looks good. I tested help with all the commands and ran through some general st testing

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bin/st'
--- bin/st 2011-01-26 22:38:13 +0000
+++ bin/st 2011-02-05 03:06:13 +0000
@@ -1723,7 +1723,7 @@
1723 error_thread.abort = True1723 error_thread.abort = True
1724 while error_thread.isAlive():1724 while error_thread.isAlive():
1725 error_thread.join(0.01)1725 error_thread.join(0.01)
1726 except Exception:1726 except (SystemExit, Exception):
1727 for thread in threading_enumerate():1727 for thread in threading_enumerate():
1728 thread.abort = True1728 thread.abort = True
1729 raise1729 raise