Github user maoling commented on the issue:
https://github.com/apache/zookeeper/pull/593
> What do you mean by 'do regression' exactly?
@anmolnar like this(grin):
`int index = 0;
while (true) {
try {
testSetSocketBufferSize();
} catch (Exception e) {
e.printStackTrace();
}
try {
Thread.sleep(200);
} catch (InterruptedException e) {
}
System.out.println("-----------" + (index++)+" passed!!!");
}`
---
