From 4b6b91782117a0efb3e44d9c85715dcaddaf1890 Mon Sep 17 00:00:00 2001 From: andig Date: Fri, 6 Sep 2024 16:06:14 +0200 Subject: [PATCH] Ocpp: re-add default params (#15919) --- util/templates/includes/ocpp.tpl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/util/templates/includes/ocpp.tpl b/util/templates/includes/ocpp.tpl index e5739975af..924372c046 100644 --- a/util/templates/includes/ocpp.tpl +++ b/util/templates/includes/ocpp.tpl @@ -12,6 +12,12 @@ idtag: {{ .idtag }} {{- if ne .remotestart "false"}} remotestart: {{ .remotestart }} {{- end }} +{{- if .metervalues }} +metervalues: {{ .metervalues }} +{{- end }} +{{- if and .meterinterval (ne .meterinterval "10s") }} +meterinterval: {{ .meterinterval }} +{{- end }} {{- if ne .connecttimeout "5m" }} connecttimeout: {{ .connecttimeout }} {{- end }}