Tune shadow render, add to accept wait queue on web server

This commit is contained in:
Mike Primm 2011-05-20 23:26:46 -05:00
parent b56332eae8
commit 024e7dc96c
2 changed files with 72 additions and 49 deletions

View file

@ -29,7 +29,7 @@ public class HttpServer extends Thread {
}
public void startServer() throws IOException {
sock = new ServerSocket(port, 5, bindAddress);
sock = new ServerSocket(port, 50, bindAddress); /* 5 too low - more than a couple users during render will get connect errors on some tile loads */
listeningThread = this;
start();
Log.info("Dynmap WebServer started on " + bindAddress + ":" + port);