Skip to content

Commit a788c20

Browse files
authoredOct 29, 2024··
Fix: Count for antall prosesstask som ikke tok høyde for return typen… (#718)
… fra postgres
1 parent 7a9d52e commit a788c20

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎task/src/main/java/no/nav/vedtak/felles/prosesstask/impl/TaskManagerRepositoryImpl.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
import java.io.IOException;
44
import java.lang.management.ManagementFactory;
5-
import java.math.BigDecimal;
6-
import java.math.BigInteger;
75
import java.nio.charset.StandardCharsets;
86
import java.time.LocalDateTime;
97
import java.time.temporal.ChronoUnit;
@@ -456,10 +454,9 @@ Map<ProsessTaskStatus, Integer> countTasksForStatus(Set<ProsessTaskStatus> statu
456454
}
457455

458456
private int intValueFromCount(Object o) {
459-
return o instanceof BigInteger bi ? bi.intValue() : (o instanceof BigDecimal bd ? bd.intValue() : 0);
457+
return o instanceof Number number ? number.intValue() : 0;
460458
}
461459

462-
463460
static synchronized String getJvmUniqueProcessName() {
464461
return ManagementFactory.getRuntimeMXBean().getName();
465462
}

0 commit comments

Comments
 (0)
Please sign in to comment.