Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Enet4 committed Apr 24, 2024
2 parents 6f9d4a6 + 8d0e886 commit 0a14f0f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ This document intends to keep track of the changes performed on the various rele

## 3.3

### 3.3.6 (2024-04-24)

- Fix application of task cleaning hook in `RunningIndexTasks` (#687)

### 3.3.5 (2024-02-28)

- Change DICOM storage stop behavior to soft stop by (#684)
- Change DICOM storage stop behavior to soft stop (#684)

### 3.3.4 (2023-12-15)

Expand Down
2 changes: 1 addition & 1 deletion dicoogle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>pt.ua.ieeta</groupId>
<artifactId>dicoogle-all</artifactId>
<version>3.3.5</version>
<version>3.3.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void addTask(String taskUid, Task<Report> task) {
}

public void addTask(Task<Report> task) {
taskRunningList.put(task.getUid(), task);
this.addTask(task.getUid(), task);
}

public boolean removeTask(String taskUid) {
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 @@
<modelVersion>4.0.0</modelVersion>
<groupId>pt.ua.ieeta</groupId>
<artifactId>dicoogle-all</artifactId>
<version>3.3.5</version>
<version>3.3.6</version>
<packaging>pom</packaging>
<name>dicoogle-all</name>

Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>pt.ua.ieeta</groupId>
<artifactId>dicoogle-all</artifactId>
<version>3.3.5</version>
<version>3.3.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 0a14f0f

Please sign in to comment.