Browse Source

increase queue size to protect against overwhelming the AI

David Rose 21 years ago
parent
commit
f731db1397
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/net/config_net.cxx

+ 1 - 1
panda/src/net/config_net.cxx

@@ -64,7 +64,7 @@ int get_net_max_write_queue() {
 // in the various QueuedConnectionReader, QueuedConnectionListener,
 // in the various QueuedConnectionReader, QueuedConnectionListener,
 // and QueuedConnectionManager classes.
 // and QueuedConnectionManager classes.
 int get_net_max_response_queue() {
 int get_net_max_response_queue() {
-  return config_net.GetInt("net-max-response-queue", 10000);
+  return config_net.GetInt("net-max-response-queue", 50000);
 }
 }
 
 
 bool get_net_error_abort() {
 bool get_net_error_abort() {