Fix thread in InsertPromo
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2025-05-08 16:38:13 +02:00
parent 0736df0976
commit 8c1caed359

View File

@@ -884,7 +884,7 @@ public class ListiniVenditaServices {
for (EntityBase entity : entityToProcess) {
Callable<EntityBase> callable = () -> {
try {
return entityProcessor.processEntity(entity, true, multiDBTransactionManager);
return entityProcessor.processEntity(entity, true, true, requestDataDTO.getUsername(), multiDBTransactionManager, requestDataDTO);
} catch (Exception e) {
throw new RuntimeException(e);
}