We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bb0b39 commit 1f75e14Copy full SHA for 1f75e14
src/main/java/org/gridsuite/modification/server/repositories/NetworkModificationRepository.java
@@ -461,7 +461,8 @@ private List<ModificationEntity> getModificationsEntitiesNonTransactional(List<U
461
@Transactional(readOnly = true)
462
public List<ModificationEntity> getModificationsEntities(List<UUID> groupUuids, boolean onlyStashed) {
463
List<ModificationEntity> modificationsEntities = getModificationsEntitiesNonTransactional(groupUuids, onlyStashed);
464
- loadFullModificationsEntities(modificationsEntities);
+ // TODO resolve lazy initialisation exception : replace this line by loadFullModificationsEntities
465
+ modificationsEntities.forEach(m -> m.toModificationInfos());
466
return modificationsEntities;
467
}
468
0 commit comments