Radek Postołowicz

Results 12 issues of Radek Postołowicz

## Expected Behavior I'm using temporal-testing and when I query running workflows: ```java List executions = client.getWorkflowServiceStubs() .blockingStub() .listOpenWorkflowExecutions( ListOpenWorkflowExecutionsRequest.newBuilder() .setNamespace("default") .build() ) .getExecutionsList(); executions.forEach(execution -> { System.err.println(execution.getExecution().getWorkflowId()); System.err.println(execution.getMemo()); });...

test server

## Actual Behavior Under certain execution path `io.temporal.testing.TestWorkflowEnvironment#sleep` hangs indefinitely. ## Steps to Reproduce the Problem Please have a look at https://github.com/rpost/temporal-java-sdk-bug-2670/blob/main/src/test/java/com/example/temporalsleepbug/TemporalSleepBugApplicationTests.java Execution stops at https://github.com/rpost/temporal-java-sdk-bug-2670/blob/main/src/test/java/com/example/temporalsleepbug/TemporalSleepBugApplicationTests.java#L52 and never finishes. Thread...

test server