Skip to content

Commit

Permalink
Update r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/MySqlConnecti…
Browse files Browse the repository at this point in the history
…onConfiguration.java

Co-authored-by: jchrys <[email protected]>
Signed-off-by: ZhangJian He <[email protected]>
  • Loading branch information
ZhangJian He and jchrys authored Jul 25, 2024
1 parent cc6d408 commit 2612cbc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ public int hashCode() {
@Override
public String toString() {
return "MySqlConnectionConfiguration{" +
(isHost ? "host='" + domain + "', port=" + port + ", ssl=" + ssl : "unixSocket='" + domain + "'") +
(isHost ? "host='" + domain + "', port=" + port + ", ssl=" + ssl +
", tcpNoDelay=" + tcpNoDelay + ", tcpKeepAlive=" + tcpKeepAlive :
"unixSocket='" + domain + "'") +
buildCommonToStringPart() +
'}';
}
Expand Down

0 comments on commit 2612cbc

Please sign in to comment.