1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 07:35:24 +02:00

[221747] default connection timeout is too high

This commit is contained in:
David McKnight 2008-03-06 21:58:45 +00:00
parent f8c2e54e84
commit 0ef2e359da

View file

@ -16,6 +16,7 @@
* David McKnight (IBM) - [216596] dstore preferences (timeout, and others)
* David McKnight (IBM) - [218685] [api][breaking][dstore] Unable to connect when using SSL.
* David McKnight (IBM) - [220123][dstore] Configurable timeout on irresponsiveness
* David McKnight (IBM) - [221747] Default Connection Timeout is too high
*******************************************************************************/
package org.eclipse.rse.connectorservice.dstore;
@ -63,7 +64,7 @@ public interface IUniversalDStoreConstants
// Socket timeout preference
public static final String RESID_PREF_SOCKET_TIMEOUT = RESID_PREF_PREFIX + "sockettimeout"; //$NON-NLS-1$
public static final int DEFAULT_PREF_SOCKET_TIMEOUT = 100000;
public static final int DEFAULT_PREF_SOCKET_TIMEOUT = 2000;
public static final String RESID_PREF_DO_KEEPALIVE = RESID_PREF_PREFIX + "dokeepalive"; //$NON-NLS-1$
public static final boolean DEFAULT_PREF_DO_KEEPALIVE = true;