Temporarily commented out saving fints4k objects as Jackson doesn't serialize derived classes; losing therefore many information, leading to incorrect results
This commit is contained in:
parent
b49d3d0ea7
commit
21404242ba
|
@ -211,9 +211,10 @@ open class fints4kBankingClient(
|
||||||
|
|
||||||
protected open fun saveData() {
|
protected open fun saveData() {
|
||||||
try {
|
try {
|
||||||
val clientDataFile = getFints4kClientDataFile(fintsBank.bankCode, fintsBank.customerId)
|
// TODO: fix that real (child) class get serialized and re-enable again
|
||||||
|
// val clientDataFile = getFints4kClientDataFile(fintsBank.bankCode, fintsBank.customerId)
|
||||||
serializer.serializeObject(fintsBank, clientDataFile)
|
//
|
||||||
|
// serializer.serializeObject(fintsBank, clientDataFile)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
log.error(e) { "Could not save bank data for $fintsBank" }
|
log.error(e) { "Could not save bank data for $fintsBank" }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue