mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 12:05:21 +02:00
[306989] [dstore] workspace in strange condition if expanding projects during logon
This commit is contained in:
parent
db54411058
commit
937e9abafa
1 changed files with 53 additions and 48 deletions
|
@ -1,5 +1,5 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2002, 2009 IBM Corporation and others.
|
||||
* Copyright (c) 2002, 2010 IBM Corporation and others.
|
||||
* 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
|
||||
|
@ -38,6 +38,7 @@
|
|||
* David McKnight (IBM) - [267236] [dstore] Can't connect after a wrong password
|
||||
* David McKnight (IBM) - [274688] [api][dstore] DStoreConnectorService.internalConnect() needs to be cleaned up
|
||||
* David McKnight (IBM) - [258529] Unable to display connection failure error message
|
||||
* David McKnight (IBM) - [306989] [dstore] workspace in strange condition if expanding projects during logon
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.rse.connectorservice.dstore;
|
||||
|
@ -1300,6 +1301,7 @@ public class DStoreConnectorService extends StandardConnectorService implements
|
|||
}
|
||||
|
||||
_isConnecting = true;
|
||||
try{
|
||||
Boolean alertedNONSSL = new Boolean(false);
|
||||
|
||||
// set A_PLUGIN_PATH so that dstore picks up the property
|
||||
|
@ -1347,8 +1349,11 @@ public class DStoreConnectorService extends StandardConnectorService implements
|
|||
else { // diagnosis, reconnection and other connection failure handling
|
||||
handleConnectionFailure(launchStatus, connectStatus, serverLauncher, serverLauncherType, monitor);
|
||||
}
|
||||
}
|
||||
finally {
|
||||
_isConnecting = false;
|
||||
}
|
||||
}
|
||||
|
||||
protected boolean isPortOutOfRange(String message)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue