mirror of
https://github.com/corda/corda.git
synced 2025-02-11 21:26:23 +00:00
CORDA-1743: Remove "isDebug = true" leftovers in the Enterprise. (#1236)
This commit is contained in:
parent
80553c51e1
commit
1f5520ca40
@ -67,7 +67,7 @@ class BridgeRestartTest : IntegrationTest() {
|
||||
@Test
|
||||
fun restartLongPingPongFlowRandomly() {
|
||||
val demoUser = User("demo", "demo", setOf(Permissions.startFlow<Ping>(), Permissions.all()))
|
||||
internalDriver(isDebug = true, startNodesInProcess = true, extraCordappPackagesToScan = listOf("net.corda.bridge")) {
|
||||
internalDriver(startNodesInProcess = true, extraCordappPackagesToScan = listOf("net.corda.bridge")) {
|
||||
val bFuture = startNode(providedName = DUMMY_BANK_B_NAME, rpcUsers = listOf(demoUser), customOverrides = mapOf("p2pAddress" to "localhost:40000"))
|
||||
val bridgePort = 20005
|
||||
val brokerPort = 21005
|
||||
@ -120,7 +120,7 @@ class BridgeRestartTest : IntegrationTest() {
|
||||
@Test
|
||||
fun restartSeveralPingPongFlowsRandomly() {
|
||||
val demoUser = User("demo", "demo", setOf(Permissions.startFlow<Ping>(), Permissions.all()))
|
||||
internalDriver(isDebug = true, startNodesInProcess = true, extraCordappPackagesToScan = listOf("net.corda.bridge")) {
|
||||
internalDriver(startNodesInProcess = true, extraCordappPackagesToScan = listOf("net.corda.bridge")) {
|
||||
val bFuture = startNode(providedName = DUMMY_BANK_B_NAME, rpcUsers = listOf(demoUser), customOverrides = mapOf("p2pAddress" to "localhost:40000"))
|
||||
val bridgePort = 20005
|
||||
val brokerPort = 21005
|
||||
|
@ -65,9 +65,7 @@ class TimedFlowMultiThreadedSMMTests : IntegrationTest() {
|
||||
@Test
|
||||
fun `timed flow is retried`() {
|
||||
val user = User("test", "pwd", setOf(Permissions.startFlow<TimedInitiatorFlow>(), Permissions.startFlow<SuperFlow>()))
|
||||
driver(DriverParameters(isDebug = true, startNodesInProcess = true,
|
||||
portAllocation = RandomFree)) {
|
||||
|
||||
driver(DriverParameters(startNodesInProcess = true, portAllocation = RandomFree)) {
|
||||
val configOverrides = mapOf("flowTimeout" to mapOf(
|
||||
"timeout" to Duration.ofSeconds(3),
|
||||
"maxRestartCount" to 2,
|
||||
@ -88,8 +86,7 @@ class TimedFlowMultiThreadedSMMTests : IntegrationTest() {
|
||||
@Test
|
||||
fun `progress tracker is preserved after flow is retried`() {
|
||||
val user = User("test", "pwd", setOf(Permissions.startFlow<TimedInitiatorFlow>(), Permissions.startFlow<SuperFlow>()))
|
||||
driver(DriverParameters(isDebug = true, startNodesInProcess = true,
|
||||
portAllocation = RandomFree)) {
|
||||
driver(DriverParameters(startNodesInProcess = true, portAllocation = RandomFree)) {
|
||||
|
||||
val configOverrides = mapOf("flowTimeout" to mapOf(
|
||||
"timeout" to Duration.ofSeconds(2),
|
||||
|
Loading…
x
Reference in New Issue
Block a user