Skip to content

Commit

Permalink
fix:embedded-redis need update version to run on macos Sonoma (#14072) (
Browse files Browse the repository at this point in the history
  • Loading branch information
Stellar1999 authored May 23, 2024
1 parent b12b23c commit a6c6117
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dubbo-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
<log4j2_version>2.23.1</log4j2_version>
<commons_io_version>2.16.1</commons_io_version>

<embedded_redis_version>0.13.0</embedded_redis_version>
<embedded_redis_version>1.1.0</embedded_redis_version>

<!-- Alibaba -->
<alibaba_spring_context_support_version>1.0.11</alibaba_spring_context_support_version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ void testWrongAuthRedisMetadata() throws ClassNotFoundException {
if (e.getCause() instanceof JedisConnectionException
&& e.getCause().getCause() instanceof JedisDataException) {
Assertions.assertEquals(
"ERR invalid password", e.getCause().getCause().getMessage());
"WRONGPASS invalid username-password pair or user is disabled.",
e.getCause().getCause().getMessage());
} else {
Assertions.fail("no invalid password exception!");
}
Expand Down

0 comments on commit a6c6117

Please sign in to comment.