@@ -159,18 +159,18 @@ else if (safe)
159
159
160
160
public String toString (){
161
161
StringBuilder buf = new StringBuilder ();
162
- buf .append ( "connectionsPerHost: " ).append ( connectionsPerHost ).append ( " " );
163
- buf .append ( "threadsAllowedToBlockForConnectionMultiplier: " ).append ( threadsAllowedToBlockForConnectionMultiplier ).append ( " " );
164
- buf .append ( "maxWaitTime: " ).append ( maxWaitTime ).append ( " " );
165
- buf .append ( "connectTimeout: " ).append ( connectTimeout ).append ( " " );
166
- buf .append ( "socketTimeout: " ).append ( socketTimeout ).append ( " " );
167
- buf .append ( "socketKeepAlive: " ).append ( socketKeepAlive ).append ( " " );
168
- buf .append ( "autoConnectRetry: " ).append ( autoConnectRetry ).append ( " " );
169
- buf .append ( "slaveOk: " ).append ( slaveOk ).append ( " " );
170
- buf .append ( "safe: " ).append ( safe ).append ( " " );
171
- buf .append ( "w: " ).append ( w ).append ( " " );
172
- buf .append ( "wtimeout: " ).append ( wtimeout ).append ( " " );
173
- buf .append ( "fsync: " ).append ( fsync ). append ( " " );
162
+ buf .append ( "connectionsPerHost= " ).append ( connectionsPerHost ).append ( ", " );
163
+ buf .append ( "threadsAllowedToBlockForConnectionMultiplier= " ).append ( threadsAllowedToBlockForConnectionMultiplier ).append ( ", " );
164
+ buf .append ( "maxWaitTime= " ).append ( maxWaitTime ).append ( ", " );
165
+ buf .append ( "connectTimeout= " ).append ( connectTimeout ).append ( ", " );
166
+ buf .append ( "socketTimeout= " ).append ( socketTimeout ).append ( ", " );
167
+ buf .append ( "socketKeepAlive= " ).append ( socketKeepAlive ).append ( ", " );
168
+ buf .append ( "autoConnectRetry= " ).append ( autoConnectRetry ).append ( ", " );
169
+ buf .append ( "slaveOk= " ).append ( slaveOk ).append ( ", " );
170
+ buf .append ( "safe= " ).append ( safe ).append ( ", " );
171
+ buf .append ( "w= " ).append ( w ).append ( ", " );
172
+ buf .append ( "wtimeout= " ).append ( wtimeout ).append ( ", " );
173
+ buf .append ( "fsync= " ).append ( fsync );
174
174
175
175
return buf .toString ();
176
176
}
0 commit comments