mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-30 12:25:35 +02:00
[388506] [dstore] [multithread] RSEC1001error window after the expired password has been changed
This commit is contained in:
parent
fcc908556b
commit
13a5c97365
1 changed files with 6 additions and 1 deletions
|
@ -43,6 +43,7 @@
|
||||||
* David McKnight (IBM) - [284950] [dstore] Error binding socket on relaunch
|
* David McKnight (IBM) - [284950] [dstore] Error binding socket on relaunch
|
||||||
* David McKnight (IBM) - [283613] [dstore] Create a Constants File for all System Properties we support
|
* David McKnight (IBM) - [283613] [dstore] Create a Constants File for all System Properties we support
|
||||||
* David McKnight (IBM) - [384301] (DSTORE)Cached password revokes the user ID
|
* David McKnight (IBM) - [384301] (DSTORE)Cached password revokes the user ID
|
||||||
|
* David McKnight (IBM) - [388506] [dstore] [multithread] RSEC1001error window after the expired password has been changed
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.connectorservice.dstore;
|
package org.eclipse.rse.connectorservice.dstore;
|
||||||
|
@ -719,8 +720,12 @@ public class DStoreConnectorService extends StandardConnectorService implements
|
||||||
}
|
}
|
||||||
if (newCredentials != null){
|
if (newCredentials != null){
|
||||||
info = newCredentials;
|
info = newCredentials;
|
||||||
|
if (clientConnection != null){
|
||||||
|
clientConnection.setPort(Integer.toString(getPort())); //reset port to default
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (launchMsg != null && launchMsg.equals(IDataStoreConstants.ATTEMPT_RECONNECT)){
|
// need to reconnect if there are new credentials
|
||||||
|
if (newCredentials != null || (launchMsg != null && launchMsg.equals(IDataStoreConstants.ATTEMPT_RECONNECT))){
|
||||||
return connectWithDaemon(info, serverLauncher, alertedNONSSL, monitor);
|
return connectWithDaemon(info, serverLauncher, alertedNONSSL, monitor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue