Updated the operation timeout to be the same as the response timeout!

This commit is contained in:
Joshua Kissoon 2014-05-11 10:40:46 +05:30
parent 210e3842ca
commit 06f9eeae43

View File

@ -11,8 +11,8 @@ public class DefaultConfiguration implements KadConfiguration
{
private final static long RESTORE_INTERVAL = 60 * 1000; // in milliseconds
private final static long RESPONSE_TIMEOUT = 1500;
private final static long OPERATION_TIMEOUT = 3000;
private final static long RESPONSE_TIMEOUT = 2000;
private final static long OPERATION_TIMEOUT = 2000;
private final static int CONCURRENCY = 10;
private final static int K = 5;
private final static int RCSIZE = 3;