Author: batosai
Date: 2008-09-09 19:14:35 +0000 (Tue, 09 Sep 2008)
New Revision: 22577
Modified:
trunk/plugins/WoT/src/plugins/WoT/WoT.java
Log:
Same test but with an Identity. Same result :(
I must be missing something really stupid...
Modified: trunk/plugins/WoT/src/plugins/WoT/WoT.java
===================================================================
--- trunk/plugins/WoT/src/plugins/WoT/WoT.java 2008-09-09 14:06:13 UTC (rev
22576)
+++ trunk/plugins/WoT/src/plugins/WoT/WoT.java 2008-09-09 19:14:35 UTC (rev
22577)
@@ -69,7 +69,6 @@
/*
client = pr.getHLSimpleClient();
web = new WebInterface(pr, db, client, SELF_URI);
- */
try {
ObjectSet<Config> result =
db.queryByExample(Config.class);
@@ -87,7 +86,8 @@
catch(Exception e) {
Logger.error(this, e.getMessage(), e);
}
- /*
+ */
+
// Create the seed Identity if it doesn't exist
try {
seed = Identity.getByURI(db, seedURI);
@@ -104,8 +104,8 @@
Logger.error(this, "Seed identity loading error", e);
return;
}
+ /*
-
// Start the inserter thread
inserter = new IdentityInserter(db, client,
pr.getNode().clientCore.tempBucketFactory);
pr.getNode().executor.execute(inserter, "WoTinserter");