Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/maven/nav.security.token.version-…
Browse files Browse the repository at this point in the history
…4.1.8
  • Loading branch information
throndi authored Jul 15, 2024
2 parents 4863898 + 48d2f03 commit 5d7120f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ open class RequestTimeFilter : Filter {
code: Int,
timer: StopWatch,
) {
if (HttpStatus.valueOf(code).isError) {
if (HttpStatus.valueOf(code).is5xxServerError) {
LOG.warn("{} - {} - ({}). Dette tok {}ms", request.method, request.requestURI, code, timer.totalTimeMillis)
} else {
if (!shouldNotFilter(request.requestURI)) {
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<kontrakter.version>3.0_20240514121145_5e689cc</kontrakter.version>
<kotest.version>5.9.0</kotest.version>
<kotlin.version>1.9.24</kotlin.version>
<mockk.version>1.13.10</mockk.version>
<kotest.version>5.9.1</kotest.version>
<kotlin.version>2.0.0</kotlin.version>
<mockk.version>1.13.11</mockk.version>
<nav.security.token.version>4.1.8</nav.security.token.version>
<wiremock.version>3.5.4</wiremock.version>
<wiremock.version>3.8.0</wiremock.version>
</properties>

<modules>
Expand Down Expand Up @@ -87,7 +87,7 @@
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>oauth2-oidc-sdk</artifactId>
<version>11.10.1</version>
<version>11.13</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -212,7 +212,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<version>1.7.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -318,7 +318,7 @@
<dependency>
<groupId>com.pinterest.ktlint</groupId>
<artifactId>ktlint-cli</artifactId>
<version>1.2.1</version>
<version>1.3.1</version>
</dependency>
<!-- additional 3rd party ruleset(s) can be specified here -->
</dependencies>
Expand Down

0 comments on commit 5d7120f

Please sign in to comment.