Skip to content

Commit

Permalink
Disable testUpdateContinueAsNewAfterWFTFailure on test server
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Nov 9, 2023
1 parent 34278a0 commit 211aaf5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

package io.temporal.workflow.updateTest;

import static org.junit.Assume.assumeTrue;

import io.temporal.client.WorkflowClient;
import io.temporal.client.WorkflowOptions;
import io.temporal.testing.internal.SDKTestOptions;
Expand All @@ -45,6 +47,9 @@ public class UpdateContinueAsNewWFTFailure {

@Test
public void testUpdateContinueAsNewAfterWFTFailure() throws InterruptedException {
// TODO(https://github.com/temporalio/sdk-java/issues/1903)
assumeTrue("Test Server hangs here", SDKTestWorkflowRule.useExternalService);

String workflowId = UUID.randomUUID().toString();
WorkflowClient workflowClient = testWorkflowRule.getWorkflowClient();
WorkflowOptions options =
Expand Down

0 comments on commit 211aaf5

Please sign in to comment.