* NTCP: Fix startup race NPE
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
|
2009-06-09 zzz
|
||||||
|
* NTCP: Fix startup race NPE (thanks postman!)
|
||||||
|
|
||||||
2009-06-08 sponge
|
2009-06-08 sponge
|
||||||
* Last commit for this cycle. All debugging except for WARN removed.
|
* Last commit for this cycle. All debugging except for WARN removed.
|
||||||
I can use the visit command to debug now anyway.
|
I can use the visit command to debug now anyway.
|
||||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
|||||||
/** deprecated */
|
/** deprecated */
|
||||||
public final static String ID = "Monotone";
|
public final static String ID = "Monotone";
|
||||||
public final static String VERSION = CoreVersion.VERSION;
|
public final static String VERSION = CoreVersion.VERSION;
|
||||||
public final static long BUILD = 18;
|
public final static long BUILD = 19;
|
||||||
/** for example "-test" */
|
/** for example "-test" */
|
||||||
public final static String EXTRA = "-rc";
|
public final static String EXTRA = "-rc";
|
||||||
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
|
||||||
|
@ -42,6 +42,7 @@ public class NTCPSendFinisher {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void stop() {
|
public void stop() {
|
||||||
|
if (_executor != null)
|
||||||
_executor.shutdownNow();
|
_executor.shutdownNow();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user