mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 23:25:26 +02:00
[206642] dstore bug fixes merged to open rse
This commit is contained in:
parent
9b3d89b110
commit
17fc645844
2 changed files with 9 additions and 6 deletions
|
@ -3962,8 +3962,8 @@ public final class DataStore
|
|||
{
|
||||
// dy: the call to flush deletes all the elements in the tree
|
||||
// which causes havoc for iSeries caching when switching between offline / online
|
||||
if (isVirtual())
|
||||
flush();
|
||||
//if (isVirtual())
|
||||
// flush();
|
||||
|
||||
|
||||
if (_tracingOn)
|
||||
|
|
|
@ -293,11 +293,14 @@ public class ServerLauncher extends Thread {
|
|||
_errReader = new BufferedReader(new InputStreamReader(_serverProcess.getErrorStream()));
|
||||
BufferedWriter inWriter = new BufferedWriter(new OutputStreamWriter(_serverProcess.getOutputStream()));
|
||||
// write password
|
||||
inWriter.write(password);
|
||||
inWriter.newLine();
|
||||
inWriter.flush();
|
||||
if (password != null)
|
||||
{
|
||||
inWriter.write(password);
|
||||
inWriter.newLine();
|
||||
inWriter.flush();
|
||||
|
||||
launchStatus = _outReader.readLine();
|
||||
launchStatus = _outReader.readLine();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue