Skip to content

Commit

Permalink
(breaking) O3-2899 - queue service should not limit to only active qu… (
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaton authored Feb 26, 2024
1 parent 81a3cb3 commit f58dd8d
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openmrs.module</groupId>
<artifactId>queue</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>queue-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class QueueEntrySearchCriteria implements Serializable {

private Date startedOnOrBefore;

private Boolean isEnded = Boolean.FALSE;
private Boolean isEnded = null;

private Date endedOnOrAfter;

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openmrs.module</groupId>
<artifactId>queue</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>queue-integration-tests</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public class QueueEntryDaoTest extends BaseModuleContextSensitiveTest {
public void setup() {
QUEUE_INITIAL_DATASET_XML.forEach(this::executeDataSet);
criteria = new QueueEntrySearchCriteria();
criteria.setIsEnded(null);
}

@Test
Expand Down
2 changes: 1 addition & 1 deletion omod/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.openmrs.module</groupId>
<artifactId>queue</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.3.0-SNAPSHOT</version>
</parent>

<artifactId>queue-omod</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.openmrs.module</groupId>
<artifactId>queue</artifactId>
<version>2.2.2-SNAPSHOT</version>
<version>2.3.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Queue</name>
<description>Patient Queues</description>
Expand Down

0 comments on commit f58dd8d

Please sign in to comment.