Skip to content

Commit

Permalink
Merge pull request #228 from overture-stack/rc/3.12.0
Browse files Browse the repository at this point in the history
Release Candidate 3.12.0
  • Loading branch information
Buwujiu authored Feb 7, 2022
2 parents af62bc7 + d5477fd commit 6d18621
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-Drevision=3.11.0
-Drevision=3.12.0
-Dsha1=
-Dchangelist=-SNAPSHOT
-Dchangelist=
5 changes: 5 additions & 0 deletions maestro-domain/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>

<!-- Testing -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import java.util.TreeMap;
import lombok.*;
import lombok.experimental.FieldNameConstants;
import org.apache.commons.collections4.CollectionUtils;

@Builder
@Getter
Expand Down Expand Up @@ -71,7 +72,7 @@ public boolean isValidReplica(AnalysisCentricDocument analysisCentricDocument) {
// && this.analysisState.equals(analysisCentricDocument.getAnalysisState())
// && this.analysisVersion.equals(analysisCentricDocument.getAnalysisVersion())
&& this.studyId.equals(analysisCentricDocument.getStudyId())
&& this.donors.equals(analysisCentricDocument.getDonors())
&& this.files.equals(analysisCentricDocument.getFiles());
&& CollectionUtils.isEqualCollection(this.donors, analysisCentricDocument.getDonors())
&& CollectionUtils.isEqualCollection(this.files, analysisCentricDocument.getFiles());
}
}

0 comments on commit 6d18621

Please # to comment.