Skip to content

Commit

Permalink
Merge pull request #70 from DiSSCo/bug-fix/fix-freemarker-temp-number
Browse files Browse the repository at this point in the history
Fix number formatting freemarker template
  • Loading branch information
samleeflang authored Dec 16, 2024
2 parents fd83f45 + 3b5f377 commit ebb17ed
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/resources/templates/biocase-cron-job.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ spec:
- name: kafka.topic
value: ${kafkaTopic}
- name: application.sourceSystemId
value: ${sourceSystemId}
value: ${sourceSystemId?c}
<#if maxItems??>
- name: application.maxItems
value: ${maxItems}
value: "${maxItems}"
</#if>
- name: spring.datasource.url
value: ${database_url}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/biocase-translator-job.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
value: ${sourceSystemId}
<#if maxItems??>
- name: application.maxItems
value: ${maxItems}
value: "${maxItems?c}"
</#if>
- name: spring.datasource.url
value: ${database_url}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/dwca-cron-job.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
value: ${sourceSystemId}
<#if maxItems??>
- name: application.maxItems
value: ${maxItems}
value: "${maxItems?c}"
</#if>
- name: spring.datasource.url
value: ${database_url}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/dwca-translator-job.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
value: ${sourceSystemId}
<#if maxItems??>
- name: application.maxItems
value: ${maxItems}
value: "${maxItems?c}"
</#if>
- name: spring.datasource.url
value: ${database_url}
Expand Down

0 comments on commit ebb17ed

Please sign in to comment.