mirror of
https://github.com/corda/corda.git
synced 2025-06-22 00:57:21 +00:00
Fixed an exception on shutdown if the nodes failed to start up before the notary value is assigned.
This commit is contained in:
@ -67,7 +67,9 @@ public class StandaloneCordaRPCJavaClientTest {
|
|||||||
try {
|
try {
|
||||||
connection.close();
|
connection.close();
|
||||||
} finally {
|
} finally {
|
||||||
notary.close();
|
if(notary != null) {
|
||||||
|
notary.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user