[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[tm-cvs-commit] dmcknight org.eclipse.tm.rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/util Receiver.java
|
- From: Eclipse CVS Genie <genie@xxxxxxxxxxx>
- Date: Tue, 01 May 2012 16:56:57 +0000
- Delivered-to: tm-cvs-commit@eclipse.org
Update of /cvsroot/tools/org.eclipse.tm.rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/util
In directory dev1:/tmp/cvs-serv30281/src/org/eclipse/dstore/core/util
Modified Files:
Tag: R3_2_maintenance
Receiver.java
Log Message:
[378136] [dstore] miner.finish is stuck
Index: Receiver.java
===================================================================
RCS file: /cvsroot/tools/org.eclipse.tm.rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/util/Receiver.java,v
retrieving revision 1.10
retrieving revision 1.10.2.1
diff -C2 -d -r1.10 -r1.10.2.1
*** Receiver.java 20 May 2009 20:06:09 -0000 1.10
--- Receiver.java 1 May 2012 16:56:55 -0000 1.10.2.1
***************
*** 1,4 ****
/*******************************************************************************
! * Copyright (c) 2002, 2009 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
--- 1,4 ----
/*******************************************************************************
! * Copyright (c) 2002, 2012 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
***************
*** 18,21 ****
--- 18,22 ----
* David McKnight (IBM) - [225507][api][breaking] RSE dstore API leaks non-API types
* David McKnight (IBM) - [226561] [apidoc] Add API markup to RSE Javadocs where extend / implement is allowed
+ * David McKnight (IBM) - [378136] [dstore] miner.finish is stuck
*******************************************************************************/
***************
*** 162,166 ****
// something really bad happened
_canExit = true;
! if (_xmlParser.getPanicException() != null)
handleError(_xmlParser.getPanicException());
}
--- 163,167 ----
// something really bad happened
_canExit = true;
! if (_xmlParser.getPanicException() != null && (_dataStore != null && _dataStore.isConnected()))
handleError(_xmlParser.getPanicException());
}
***************
*** 185,188 ****
--- 186,190 ----
return _socket;
}
+
/**