mirror of
https://github.com/temporalio/temporal.git
synced 2026-08-30 18:41:49 -07:00
## What changed? Added a missing `d.syncSummary()` call in `syncVersionDataToComputeStatus`, so it now notifies the parent Deployment workflow after pulling a compute status from WCI. ## Why? Without this, the pull only updates the Version workflow's own state. The Deployment workflow (which `ListWorkerDeployments`/`DescribeWorkerDeployment` actually read from) is not updated, so `computeStatus` can stay permanently missing from the API even when the data is available. ## How did you test it? - [x] built - [x] run locally and tested manually - [ ] covered by existing tests - [ ] added new unit test(s) - [ ] added new functional test(s)
Use development-*.yaml file to override the default dynamic config value (they are specified
when creating the service config).
Each key can have zero or more values and each value can have zero or more constraints. There are only three types of constraint:
namespace: stringtaskQueueName: stringtaskType: int(1:Workflow, 2:Activity)
A value will be selected and returned if all its has exactly the same constraints as the ones specified in query filters (including the number of constraints).
Please use the following format:
testGetBoolPropertyKey:
- value: false
- value: true
constraints:
namespace: "global-samples-namespace"
- value: false
constraints:
namespace: "samples-namespace"
testGetDurationPropertyKey:
- value: "1m"
constraints:
namespace: "samples-namespace"
taskQueueName: "longIdleTimeTaskqueue"
testGetFloat64PropertyKey:
- value: 12.0
constraints:
namespace: "samples-namespace"
testGetMapPropertyKey:
- value:
key1: 1
key2: "value 2"
key3:
- false
- key4: true
key5: 2.0