Author: rwesten
Date: Fri Nov 4 12:06:24 2011
New Revision: 1197527
URL: http://svn.apache.org/viewvc?rev=1197527&view=rev
Log:
corrected a bug that prevented YardException to be parsed to the ErrorLogging
daemon (as mentioned in http://markmail.org/message/5zyjgijd3xdq3or2)
Modified:
incubator/stanbol/trunk/entityhub/indexing/core/src/main/java/org/apache/stanbol/entityhub/indexing/core/impl/EntityPersisterRunnable.java
Modified:
incubator/stanbol/trunk/entityhub/indexing/core/src/main/java/org/apache/stanbol/entityhub/indexing/core/impl/EntityPersisterRunnable.java
URL:
http://svn.apache.org/viewvc/incubator/stanbol/trunk/entityhub/indexing/core/src/main/java/org/apache/stanbol/entityhub/indexing/core/impl/EntityPersisterRunnable.java?rev=1197527&r1=1197526&r2=1197527&view=diff
==============================================================================
---
incubator/stanbol/trunk/entityhub/indexing/core/src/main/java/org/apache/stanbol/entityhub/indexing/core/impl/EntityPersisterRunnable.java
(original)
+++
incubator/stanbol/trunk/entityhub/indexing/core/src/main/java/org/apache/stanbol/entityhub/indexing/core/impl/EntityPersisterRunnable.java
Fri Nov 4 12:06:24 2011
@@ -109,6 +109,7 @@ public class EntityPersisterRunnable ext
errorMsg = "Entity %s was not indexed by the Yard %s";
} catch (YardException e) {
errorMsg = "Unable to store Entity %s to Yard %s because of an
YardException";
+ yardException = e;
}
//the remaining Items in to store have some errors
for(QueueItem<Representation> entry : toStore.values()){