ddavidyuk
ddavidyuk
Workflow execution with Workflow.await(condition) times out in unit tests with enabled time skipping
## Expected Behavior The unit test below should always pass ## Actual Behavior Sometimes the test fails with io.temporal.client.WorkflowNotFoundException. Changing `Workflow.await(condition)` to `Workflow.await(Duration.ofSeconds(100), condition)` in `TestWorkflowImpl` seems to fix the...
## Expected Behavior GetWorkflowExecutionHistoryReverse should be included to readOnlyNamespaceAPI in frontend_api.go ## Actual Behavior GetWorkflowExecutionHistoryReverse is not included ## Steps to Reproduce the Problem 1. Enable default authorizer and claim...
**Is your feature request related to a problem? Please describe.** There are multiple microservices, each one using a different encoding scheme for outgoing Temporal payloads, e.g.: Microservice A: binary/gzip Microservice...
We have the following JSON schema set up for the record keys: ```json { "$schema": "https://json-schema.org/draft/2019-09/schema", "type": "string", "minLength": 1 } ``` This describes non-empty strings. When we select this...