Skip to content

Commit

Permalink
3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
leonchen83 committed Dec 8, 2020
1 parent 78df4a4 commit 02d80fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
### 3.4.4

Fix `RedisURI` `setAuthUser` bug.
Change default `readTimeout`, `connectionTimeout` from `30` seconds to `60` seconds.

### 3.4.3
Fix NPE of `Configuration.toString()`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,14 @@ public void test2() throws URISyntaxException {
assertEquals("us", configuration.getAuthUser());
assertEquals("ps", configuration.getAuthPassword());
}

@Test
public void test3() {
try {
int timeout = Configuration.defaultSetting().getReadTimeout();
assertEquals(60000, timeout);
} catch (Throwable e) {
fail();
}
}
}

0 comments on commit 02d80fe

Please sign in to comment.