Spencer Judge
Spencer Judge
**What changed?** Add some additional information to polling responses about the task queue ## Outcome of discussion w/ @ShahabT and @dnr Initially I would've liked `TaskQueueStats` to be returned on...
Python stdlib is unfortunately very lacking when it comes to ways to work with `AsyncIterator`s. Add this to the fact that our API doesn't support a LIMIT clause, but only...
Python currently applies jobs in a few different batches: https://github.com/temporalio/sdk-python/blob/main/temporalio/worker/_workflow_instance.py#L325 In TS, we changed this to only do one batch, and then run the event loop: https://github.com/temporalio/sdk-typescript/pull/1488 This model is...
## What was changed Fixed a bug where an empty WFT sequence followed by an update could cause the update job to be sent before things that happened preceding the...
There's a handful of ways calls can be considered long polls in the client code, by name or by (recently added) request extension. Make everything use extension instead of explicit...
WorkflowExecutionCancelRequestedEventAttributes has a cause field that should be exposed when workflows receive cancels, and we should additionally expose this as an input when users are issuing cancels from clients or...
**Is your feature request related to a problem? Please describe.** Add support for attaching priority to workflows/activities **Describe the solution you'd like** See https://github.com/temporalio/features/issues/593 for details
WorkflowExecutionCancelRequestedEventAttributes has a cause field that should be exposed when workflows receive cancels, and we should additionally expose this as an input when users are issuing cancels from clients or...
**Is your feature request related to a problem? Please describe.** Add support for attaching priority to workflows/activities **Describe the solution you'd like** See https://github.com/temporalio/features/issues/593 for details
WorkflowExecutionCancelRequestedEventAttributes has a cause field that should be exposed when workflows receive cancels, and we should additionally expose this as an input when users are issuing cancels from clients or...