From 1933ad6a5e045e7edd8539c3eec3d6e4132c21f7 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Wed, 29 Jul 2009 20:38:22 +0000 Subject: [PATCH] [285083][dstore] default socket timeout preference value is too low --- .../dstore/IDStoreDefaultPreferenceConstants.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/IDStoreDefaultPreferenceConstants.java b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/IDStoreDefaultPreferenceConstants.java index bdcdd37603e..81752487d21 100644 --- a/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/IDStoreDefaultPreferenceConstants.java +++ b/rse/plugins/org.eclipse.rse.connectorservice.dstore/src/org/eclipse/rse/internal/connectorservice/dstore/IDStoreDefaultPreferenceConstants.java @@ -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 * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html @@ -10,12 +10,13 @@ * * Contributors: * 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; public interface IDStoreDefaultPreferenceConstants { 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 int DEFAULT_PREF_KEEPALIVE_RESPONSE_TIMEOUT = 60000; public static final int DEFAULT_PREF_SOCKET_READ_TIMEOUT = 3600000;