cadence-client icon indicating copy to clipboard operation
cadence-client copied to clipboard

Framework for authoring workflows and activities running on top of the Cadence orchestration engine.

Results 126 cadence-client issues
Sort by recently updated
recently updated
newest added

We have some non-deterministic failures in a user's workflows, which (as far as either of us can tell) are not due to flawed workflow code. We have been unable to...

Related issue: https://github.com/uber-go/cadence-client/issues/1156 **What changed?** Support for Otel was added in the form of the opentracing Bridge. This will allow a user of the SDK to set an Otel tracer...

Builds on #1167, but adds delay before retrying service-busy errors. For now, since our server-side RPS quotas are calculated per second, this delays at least 1 second per service busy...

**What changed?** **Why?** **How did you test it?** **Potential risks**

Workflow goroutines are shut down concurrently, which can lead to race conditions and crashes. This is an attempt to make them less likely to terminate the hosting process, specifically due...

**Describe the bug** I am writing a cadence workflow that starts some child workflows like this: ``` var result interface{} workflow.ExecuteChildWorkflow(childCtx, MyWorkflowName, arg1, arg2).Get(childCtx, &result) ``` But this fails if...

If my activity stores multiple properties in the heartbeat, how do I test it? In the cadence client, the RecordHeartbeat and GetHeartbeatDetails are variadic functions, i.e. we can record multiple...

**Is your feature request related to a problem? Please describe.** The Jaeger clients are being deprecated in favor of OpenTelemetry SDKs. **Proposed Solution** Allow the Cadence SDK to utilize the...

**Describe the bug** Code compatibility issue with thrift 0.13.0 **To Reproduce** Is the issue reproducible? Yes **Steps to reproduce the behavior:** `go get go.uber.org/[email protected]` **Expected behavior** No error **Actual behavior**...