Fix RPC flaky test (#2849)

* fix rpc reconnect flaky test; remove obsolete rpcproxy log message

* rpc client proxy: replace lock with atomic variable

* rpc client proxy: removed volatile property

* RPCStabilityTests: used eventually() method to test async response

* RPCStabilityTests: remove unused import
This commit is contained in:
bpaunescu
2018-03-20 16:23:29 +00:00
committed by GitHub
parent 144632818c
commit ac9cb59a6e
4 changed files with 23 additions and 19 deletions

View File

@ -49,6 +49,19 @@ dependencies {
testCompile project(':node-driver')
}
configurations {
testArtifacts.extendsFrom testRuntime
}
task testJar(type: Jar) {
classifier "tests"
from sourceSets.test.output
}
artifacts {
testArtifacts testJar
}
jar {
baseName 'corda-node-api'
}