Skip to content
Snippets Groups Projects
Commit 4eb1f530 authored by Filip Kollár's avatar Filip Kollár
Browse files

fixed initialization to wrong number on exchange rate

parent 946b8026
No related branches found
No related tags found
1 merge request!37Etl from transaction service into analytics
......@@ -97,6 +97,6 @@ public class NbsCurrencyUpdateService implements CurrencyUpdateService {
}
private String sanitizeNumberFormat(String number) {
return number.replace(",", "").replace(" ", "");
return number.replace(",", ".").replace(" ", "");
}
}
......@@ -21,7 +21,7 @@ currency:
spring:
datasource:
url: jdbc:postgresql://currency-db:5432/currency_db
url: jdbc:postgresql://localhost:5433/currency_db
username: currency_service
password: changemelater
driver-class-name: org.postgresql.Driver
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment