Skip to content

Commit

Permalink
Harden kill invocation test for the the three node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrohrmann committed Nov 13, 2024
1 parent efe14b8 commit 20a15c2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ class KillInvocation {

@Test
fun kill(@InjectClient ingressClient: Client, @InjectMetaURL metaURL: URL) = runTest {
val id = KillTestRunnerClient.fromClient(ingressClient).send().startCallTree().invocationId
val id =
KillTestRunnerClient.fromClient(ingressClient)
.send()
.startCallTree(idempotentCallOptions())
.invocationId
val awakeableHolderClient = AwakeableHolderClient.fromClient(ingressClient, "kill")
// With this synchronization point we make sure the call tree has been built before killing it.
await withAlias
Expand Down

0 comments on commit 20a15c2

Please sign in to comment.