File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -134,6 +134,10 @@ Similar projects
134134Changelog
135135=========
136136
137+ * 0.6.2:
138+
139+ * Fix OS X regression.
140+
137141* 0.6.1:
138142
139143 * Support for OS X (contributed by Saulius Menkevičius)
Original file line number Diff line number Diff line change 55
66setup (
77 name = "manhole" ,
8- version = "0.6.1 " ,
8+ version = "0.6.2 " ,
99 url = 'https://github.com/ionelmc/python-manhole' ,
1010 download_url = '' ,
1111 license = 'BSD' ,
Original file line number Diff line number Diff line change @@ -204,7 +204,8 @@ def check_credentials(client):
204204 def handle (client ):
205205 client .settimeout (None )
206206
207- client .setsockopt (socket .SOL_SOCKET , socket .SO_SNDBUF , 0 )
207+ # disable this till we have evidence that it's needed
208+ #client.setsockopt(socket.SOL_SOCKET, socket.SO_SNDBUF, 0)
208209 # Note: setting SO_RCVBUF on UDS has no effect, see: http://man7.org/linux/man-pages/man7/unix.7.html
209210
210211 backup = []
You can’t perform that action at this time.
0 commit comments