Skip to content

Commit

Permalink
fix: upgrade to smallrye-context-propagation 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed Jun 12, 2024
1 parent 8f2393d commit e69d57a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<microprofile-reactive-streams.version>3.0</microprofile-reactive-streams.version>
<microprofile-context-propagation.version>1.3</microprofile-context-propagation.version>
<smallrye-context-propagation.version>2.1.0</smallrye-context-propagation.version>
<smallrye-context-propagation.version>2.1.2</smallrye-context-propagation.version>
<smallrye-config.version>3.8.2</smallrye-config.version>
<smallrye-common-annotation.version>2.4.0</smallrye-common-annotation.version>
<jakarta.enterprise.cdi-api.version>4.1.0</jakarta.enterprise.cdi-api.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void createAndFailAgain() throws ExecutionException, InterruptedException
}).get();

assertThat(list).hasSize(0);
assertThat(error.get()).hasMessage("Failed");
assertThat(error.get()).hasMessage("java.lang.RuntimeException: Failed");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void createAndFailAgain() throws ExecutionException, InterruptedException
}).get();

assertThat(list).hasSize(0);
assertThat(error.get()).hasMessage("Failed");
assertThat(error.get()).hasMessage("java.lang.RuntimeException: Failed");
}

@Test
Expand Down

0 comments on commit e69d57a

Please sign in to comment.