Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new flag maxProxyRetries #7616

Merged
merged 2 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions openstack/cronus/templates/cronus/_config.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ cronus:
{{- if .Values.config.retry.maxConnectionRetries }}
maxConnectionRetries: {{ .Values.config.retry.maxConnectionRetries }}
{{- end }}
{{- if .Values.config.retry.maxProxyRetries }}
maxProxyRetries: {{ .Values.config.retry.maxProxyRetries }}
{{- end }}
{{- if .Values.config.retry.retryInterval }}
retryInterval: {{ .Values.config.retry.retryInterval }}
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions openstack/cronus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ poller: # service that handles received emails
debug: false # debug HTTP requests
retry: # retry settings for failed connections
maxConnectionRetries: 5 # 5 retries per connection
maxProxyRetries: 2 # 2 retries per connection when in proxy mode
retryInterval: 0.5s # 500ms to wait after each try, e.g. in total 2.5 seconds, used in HTTP retry
connectionTimeout: 0.5s # 500ms to wait after each try, e.g. in total 2.5 seconds, used in SMTP net retry
commandTimeout: 3s
Expand Down
Loading