improving workflow fault tolerance

This commit is contained in:
2025-10-26 23:14:24 +02:00
parent 22ecc4b589
commit b5e891afed
18 changed files with 63 additions and 178 deletions

View File

@@ -50,7 +50,7 @@ public class TransactionService {
return transactionRepository.findAll(spec, pageable);
}
public Transaction save(Transaction transaction){
public Transaction save(Transaction transaction) {
return transactionRepository.save(transaction);
}
}
}