Skip to content

Commit 8c4ddea

Browse files
Raise Resend sync batch size default (#659)
* chore: pass resend sync batch size Co-authored-by: openhands <openhands@all-hands.dev> * chore: bump openhands chart version Co-authored-by: openhands <openhands@all-hands.dev> * chore: bump chart version to 0.7.35 after merging main Required by validate-chart-versions CI: the PR modifies values.yaml and the resend-sync-cronjob template, so the chart version must be greater than the base (main) version 0.7.34. Co-authored-by: openhands <openhands@all-hands.dev> --------- Co-authored-by: openhands <openhands@all-hands.dev>
1 parent ed0435b commit 8c4ddea

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

charts/openhands/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
description: OpenHands is an AI-driven autonomous software engineer
33
name: openhands
44
appVersion: cloud-1.34.0
5-
version: 0.7.34
5+
version: 0.7.35
66
maintainers:
77
- name: rbren
88
- name: xingyao

charts/openhands/templates/resend-sync-cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ spec:
5252
name: keycloak-realm
5353
key: realm-name
5454
- name: BATCH_SIZE
55-
value: {{ .Values.resendSync.batchSize | quote }}
55+
value: {{ .Values.resendSync.batchSize | default "2000" | quote }}
5656
- name: MAX_RETRIES
5757
value: {{ .Values.resendSync.maxRetries | quote }}
5858
- name: INITIAL_BACKOFF_SECONDS

charts/openhands/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ resendSync:
220220
successfulJobsHistoryLimit: 1
221221
backoffLimit: 3
222222
audienceId: ""
223-
batchSize: "100"
223+
batchSize: "2000"
224224
maxRetries: "3"
225225
initialBackoffSeconds: "1"
226226
maxBackoffSeconds: "60"

0 commit comments

Comments
 (0)