This is an automated email from the ASF dual-hosted git repository.
zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-helm-chart.git
The following commit(s) were added to refs/heads/master by this push:
new 6514316 chore: revert access_log_format quote (#311)
6514316 is described below
commit 651431617a3e3c34d38455243a1e16f623636834
Author: Jintao Zhang <[email protected]>
AuthorDate: Sat Jul 2 03:25:44 2022 +0800
chore: revert access_log_format quote (#311)
---
charts/apisix/templates/configmap.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/charts/apisix/templates/configmap.yaml
b/charts/apisix/templates/configmap.yaml
index e6cb41f..ab36473 100644
--- a/charts/apisix/templates/configmap.yaml
+++ b/charts/apisix/templates/configmap.yaml
@@ -174,7 +174,7 @@ data:
enable_access_log: {{ .Values.logs.enableAccessLog }}
{{- if .Values.logs.enableAccessLog }}
access_log: "{{ .Values.logs.accessLog }}"
- access_log_format: '{{ .Values.logs.accessLogFormat }}'
+ access_log_format: "{{ .Values.logs.accessLogFormat }}"
access_log_format_escape: {{ .Values.logs.accessLogFormatEscape }}
{{- end }}
keepalive_timeout: 60s # timeout during which a keep-alive
client connection will stay open on the server side.