Code

Fix bug with SSL-connection and XMLRPC, see my monologue at
authorschlatterbeck <schlatterbeck@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 8 Oct 2009 12:18:47 +0000 (12:18 +0000)
committerschlatterbeck <schlatterbeck@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 8 Oct 2009 12:18:47 +0000 (12:18 +0000)
commit4de70c4242acfe69a181ad91b1cd1bdff2cd5c63
tree1bc5b9ebc0feb68962ecf7cc6b61e0d3968941bf
parentc871fe1518cca0832970736358947f74468d38e6
Fix bug with SSL-connection and XMLRPC, see my monologue at
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9700
This also fixes a race condition where the forked roundup process would
consume 99% CPU resources after the client opens the SSL connection but
doesn't send anything, e.g.,
 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 s.connect(('localhost', 443))
 ssl_sock = socket.ssl(s)

git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4362 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/scripts/roundup_server.py