awaneetdecoder commented on PR #5737: URL: https://github.com/apache/fineract/pull/5737#issuecomment-4184376366
@adamsaghy During CI, scenarios C2439, C2440, and C2441 were failing with a 403 "Unknown data integrity issue with savings product" error. The root cause was that SavingsProductRequestFactory.defaultSavingsProductRequest() used a hardcoded product name "CEUR" — when multiple scenarios run sequentially in the same DB session, the second scenario hits a unique constraint violation trying to create a product with the same name. Fixed by appending a 4-character UUID suffix to both the product name and short name, making each scenario's product creation independent. All 43 checks are now passing. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
