Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORE-8856 Adding lambda to suspendible function to trigger bug #6149

Closed
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import net.corda.e2etest.utilities.startRestFlow
import net.corda.v5.crypto.SecureHash
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.BeforeAll
import org.junit.jupiter.api.RepeatedTest
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.TestInfo
import org.junit.jupiter.api.TestInstance
Expand Down Expand Up @@ -109,7 +110,7 @@ class UtxoLedgerTests : ClusterReadiness by ClusterReadinessChecker() {
}


@Test
@RepeatedTest(100)
fun `Utxo Ledger - create a transaction containing states and finalize it then evolve it`(testInfo: TestInfo) {
val idGenerator = TestRequestIdGenerator(testInfo)
val input = "test input"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,9 +366,9 @@ class UtxoFinalityFlowV1(
}

if (log.isDebugEnabled) {
log.debug(
log.debug {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You probably need to ensure that the tests are running at debug level, not sure if they do or not.

"Successfully notarized transaction $transactionId using notary $notary and received ${notarySignatures.size} signature(s)"
)
}
}

return notarizedTransaction to notarySignatures
Expand Down