I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 782e38bd authored by zab2's avatar zab2
Browse files

add TODO, make server thread daemon

parent 937404b3
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,8 @@ import junit.framework.TestCase; ...@@ -14,6 +14,8 @@ import junit.framework.TestCase;
abstract class StreamingTestBase extends TestCase { abstract class StreamingTestBase extends TestCase {
// TODO: this may need to start a full router
protected abstract Properties getProperties(); protected abstract Properties getProperties();
protected I2PSession createSession() throws Exception { protected I2PSession createSession() throws Exception {
...@@ -55,7 +57,7 @@ abstract class StreamingTestBase extends TestCase { ...@@ -55,7 +57,7 @@ abstract class StreamingTestBase extends TestCase {
protected final Thread runServer(I2PAppContext ctx, I2PSession session) { protected final Thread runServer(I2PAppContext ctx, I2PSession session) {
Thread t = new Thread(getServer(ctx,session)); Thread t = new Thread(getServer(ctx,session));
t.setName("servert"); t.setName("servert");
t.setDaemon(false); t.setDaemon(true);
t.start(); t.start();
return t; return t;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment