Closed tovbinm closed 12 years ago
Now WebServer.scala has:
Line 121: if (config.tcp.trafficClass.isDefined) { bootstrap.setOption("child.backlog", config.tcp.trafficClass.get); }
It should be: if (config.tcp.acceptBackLog.isDefined) { bootstrap.setOption("child.backlog", config.tcp.acceptBackLog.get); }
Thanks @tovbinm. Fixed now.
Now WebServer.scala has:
Line 121: if (config.tcp.trafficClass.isDefined) { bootstrap.setOption("child.backlog", config.tcp.trafficClass.get); }
It should be: if (config.tcp.acceptBackLog.isDefined) { bootstrap.setOption("child.backlog", config.tcp.acceptBackLog.get); }