Skip to content

Commit 0a14f0f

Browse files
committed
Merge branch 'dev'
2 parents 6f9d4a6 + 8d0e886 commit 0a14f0f

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,13 @@ This document intends to keep track of the changes performed on the various rele
33

44
## 3.3
55

6+
### 3.3.6 (2024-04-24)
7+
8+
- Fix application of task cleaning hook in `RunningIndexTasks` (#687)
9+
610
### 3.3.5 (2024-02-28)
711

8-
- Change DICOM storage stop behavior to soft stop by (#684)
12+
- Change DICOM storage stop behavior to soft stop (#684)
913

1014
### 3.3.4 (2023-12-15)
1115

dicoogle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>pt.ua.ieeta</groupId>
1212
<artifactId>dicoogle-all</artifactId>
13-
<version>3.3.5</version>
13+
<version>3.3.6</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

dicoogle/src/main/java/pt/ua/dicoogle/taskManager/RunningIndexTasks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public void addTask(String taskUid, Task<Report> task) {
7474
}
7575

7676
public void addTask(Task<Report> task) {
77-
taskRunningList.put(task.getUid(), task);
77+
this.addTask(task.getUid(), task);
7878
}
7979

8080
public boolean removeTask(String taskUid) {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>pt.ua.ieeta</groupId>
55
<artifactId>dicoogle-all</artifactId>
6-
<version>3.3.5</version>
6+
<version>3.3.6</version>
77
<packaging>pom</packaging>
88
<name>dicoogle-all</name>
99

sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>pt.ua.ieeta</groupId>
1212
<artifactId>dicoogle-all</artifactId>
13-
<version>3.3.5</version>
13+
<version>3.3.6</version>
1414
<relativePath>../pom.xml</relativePath>
1515
</parent>
1616

0 commit comments

Comments
 (0)