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 ebd6ac9 commit 4d0f221Copy full SHA for 4d0f221
src/main/java/fr/insee/genesis/domain/utils/DataVerifier.java
@@ -80,7 +80,7 @@ private static SurveyUnitModel createForcedSurveyUnitModel(
80
.interrogationId(interrogationId)
81
.state(DataState.FORCED)
82
.mode(sampleSurveyUnitModel.getMode())
83
- .recordDate(LocalDateTime.now())
+ .recordDate(LocalDateTime.now().plusSeconds(1)) // Add 1 second to avoid same recordDate as COLLECTED
84
.fileDate(sampleSurveyUnitModel.getFileDate())
85
.collectedVariables(new ArrayList<>())
86
.externalVariables(new ArrayList<>())
0 commit comments