mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 07:15:39 +02:00
[285083][dstore] default socket timeout preference value is too low
This commit is contained in:
parent
7d3509d475
commit
1933ad6a5e
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/********************************************************************************
|
/********************************************************************************
|
||||||
* Copyright (c) 2008 IBM Corporation. All rights reserved.
|
* Copyright (c) 2008, 2009 IBM Corporation. All rights reserved.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* This program and the accompanying materials are made available under the terms
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* available at http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
@ -10,12 +10,13 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* David McKnight (IBM) - [228334][api][breaking][dstore] Default DataStore connection timeout is too short
|
* David McKnight (IBM) - [228334][api][breaking][dstore] Default DataStore connection timeout is too short
|
||||||
|
* David McKnight (IBM) - [285083][dstore] default socket timeout preference value is too low
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
package org.eclipse.rse.internal.connectorservice.dstore;
|
package org.eclipse.rse.internal.connectorservice.dstore;
|
||||||
|
|
||||||
public interface IDStoreDefaultPreferenceConstants {
|
public interface IDStoreDefaultPreferenceConstants {
|
||||||
public static final boolean DEFAULT_PREF_CACHE_REMOTE_CLASSES = true;
|
public static final boolean DEFAULT_PREF_CACHE_REMOTE_CLASSES = true;
|
||||||
public static final int DEFAULT_PREF_SOCKET_TIMEOUT = 5000;
|
public static final int DEFAULT_PREF_SOCKET_TIMEOUT = 10000;
|
||||||
public static final boolean DEFAULT_PREF_DO_KEEPALIVE = true;
|
public static final boolean DEFAULT_PREF_DO_KEEPALIVE = true;
|
||||||
public static final int DEFAULT_PREF_KEEPALIVE_RESPONSE_TIMEOUT = 60000;
|
public static final int DEFAULT_PREF_KEEPALIVE_RESPONSE_TIMEOUT = 60000;
|
||||||
public static final int DEFAULT_PREF_SOCKET_READ_TIMEOUT = 3600000;
|
public static final int DEFAULT_PREF_SOCKET_READ_TIMEOUT = 3600000;
|
||||||
|
|
Loading…
Add table
Reference in a new issue