Skip to content

Commit

Permalink
RANCHER-970 Reason: failed to convert java.lang.String to @com.faster… (
Browse files Browse the repository at this point in the history
#53)

* RANCHER-970 Reason: failed to convert java.lang.String to @com.fasterxml.jackson.annotation.JsonProperty java.lang.Integer (caused by java.lang.NumberFormatException: For input string: "1.25e+06")

* RANCHER-970 Reason: failed to convert java.lang.String v2

* RANCHER-970 Reason: failed to convert java.lang.String v3

* RANCHER-970 version increase.
  • Loading branch information
eldiiar-duishenaliev authored Sep 6, 2023
1 parent 4d32327 commit b05bf6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: library
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.14
version: 0.1.15

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/mod-lists/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.1.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
6 changes: 3 additions & 3 deletions charts/mod-lists/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ extraEnv: |
- name: JAVA_OPTIONS
value: {{ .Values.javaOptions }}
- name: MAX_LIST_SIZE
value: "{{ .Values.maxListSize }}"
value: {{ .Values.maxListSize | quote }}
- name: LIST_EXPORT_BATCH_SIZE
value: "{{ .Values.listExportBatchSize }}"
value: {{ .Values.listExportBatchSize | quote }}
- name: spring.task.execution.pool.max-size
value: "{{ .Values.springTaskPoolSize }}"
value: {{ .Values.springTaskPoolSize | quote }}
# Enable parameters for DB, Kafka or AWS connection. In value set name of secret
dbConnectParameters: db-connect-modules
Expand Down

0 comments on commit b05bf6b

Please sign in to comment.