Skip to content

Commit 08bfad1

Browse files
authored
Prune dynamic configs used for internal SDK tests (#2772)
1 parent 2a0ad00 commit 08bfad1

File tree

3 files changed

+6
-41
lines changed

3 files changed

+6
-41
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -92,23 +92,10 @@ jobs:
9292
--search-attribute CustomDatetimeField=Datetime \
9393
--search-attribute CustomDoubleField=Double \
9494
--search-attribute CustomBoolField=Bool \
95-
--dynamic-config-value system.forceSearchAttributesCacheRefreshOnRead=true \
9695
--dynamic-config-value system.enableActivityEagerExecution=true \
97-
--dynamic-config-value system.enableEagerWorkflowStart=true \
98-
--dynamic-config-value system.enableExecuteMultiOperation=true \
99-
--dynamic-config-value frontend.enableUpdateWorkflowExecutionAsyncAccepted=true \
100-
--dynamic-config-value history.MaxBufferedQueryCount=100000 \
10196
--dynamic-config-value frontend.workerVersioningDataAPIs=true \
102-
--dynamic-config-value worker.buildIdScavengerEnabled=true \
103-
--dynamic-config-value frontend.workerVersioningRuleAPIs=true \
104-
--dynamic-config-value worker.removableBuildIdDurationSinceDefault=true \
105-
--dynamic-config-value matching.useNewMatcher=true \
106-
--dynamic-config-value system.refreshNexusEndpointsMinWait=1000 \
107-
--dynamic-config-value component.callbacks.allowedAddresses='[{"Pattern":"*","AllowInsecure":true}]' \
10897
--dynamic-config-value component.nexusoperations.recordCancelRequestCompletionEvents=true \
109-
--dynamic-config-value frontend.workerVersioningWorkflowAPIs=true \
110-
--dynamic-config-value frontend.activityAPIsEnabled=true \
111-
--dynamic-config-value system.enableDeploymentVersions=true \
98+
--dynamic-config-value component.callbacks.allowedAddresses='[{"Pattern":"*","AllowInsecure":true}]' \
11299
--dynamic-config-value history.enableRequestIdRefLinks=true &
113100
sleep 10s
114101

docker/github/dynamicconfig/development.yaml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,5 @@ system.forceSearchAttributesCacheRefreshOnRead:
22
- value: true
33
system.enableActivityEagerExecution:
44
- value: true
5-
system.enableEagerWorkflowStart:
5+
history.enableRequestIdRefLinks:
66
- value: true
7-
frontend.enableExecuteMultiOperation:
8-
- value: true
9-
frontend.enableUpdateWorkflowExecution:
10-
- value: true
11-
frontend.enableUpdateWorkflowExecutionAsyncAccepted:
12-
- value: true
13-
frontend.workerVersioningWorkflowAPIs:
14-
- value: true
15-
frontend.workerVersioningDataAPIs:
16-
- value: true
17-
history.MaxBufferedQueryCount:
18-
- value: 100000
19-
worker.buildIdScavengerEnabled:
20-
- value: true
21-
worker.removableBuildIdDurationSinceDefault:
22-
- value: 1
23-
system.enableNexus:
24-
- value: true
25-
component.nexusoperations.callback.endpoint.template:
26-
- value: http://localhost:7243/namespaces/{{.NamespaceName}}/nexus/callback
27-
component.callbacks.allowedAddresses:
28-
- value:
29-
- Pattern: "localhost:7243"
30-
AllowInsecure: true
31-
system.refreshNexusEndpointsMinWait:
32-
- value: 1ms

temporal-workflowcheck/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ shadowJar {
2424
relocate 'org.objectweb.asm', 'io.temporal.workflowcheck.shaded.org.objectweb.asm'
2525
archiveClassifier = ''
2626
}
27+
shadowJar.dependsOn(jar)
2728
build.dependsOn shadowJar
29+
distTar.dependsOn shadowJar
30+
distZip.dependsOn shadowJar
31+
startScripts.dependsOn shadowJar
2832

2933
// Configure publishing to publish both regular library jar and shadow executable jar
3034
publishing {

0 commit comments

Comments
 (0)