Skip to content

Commit

Permalink
increase server timeout for the moment (TODO: revert)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Jan 20, 2021
1 parent dd2c2b6 commit 19e5fd6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ public ClientConnectedEvent(Channel channel) {
public void process(Server server) {
System.out.println("Client connected: " + channel);
server.addChannel(channel);
channel.write("h 1\nc io " + new Random().nextInt(1000000000) + "\nc crt 25\nc ctr\n");
//channel.write("h 1\nc io " + new Random().nextInt(1000000000) + "\nc crt 25\nc ctr\n");
channel.write("h 1\nc io " + new Random().nextInt(1000000000) + "\nc crt 250\nc ctr\n");
}

}

0 comments on commit 19e5fd6

Please sign in to comment.