geforkt von Mirrors/Velocity
Bump write mark, to see if it improves #152
Dieser Commit ist enthalten in:
Ursprung
4b5664ec91
Commit
ca915a44a9
@ -21,8 +21,8 @@ import org.apache.logging.log4j.Logger;
|
|||||||
|
|
||||||
public final class ConnectionManager {
|
public final class ConnectionManager {
|
||||||
|
|
||||||
private static final WriteBufferWaterMark SERVER_WRITE_MARK = new WriteBufferWaterMark(1 << 16,
|
private static final WriteBufferWaterMark SERVER_WRITE_MARK = new WriteBufferWaterMark(1 << 21,
|
||||||
1 << 18);
|
1 << 21);
|
||||||
private static final Logger LOGGER = LogManager.getLogger(ConnectionManager.class);
|
private static final Logger LOGGER = LogManager.getLogger(ConnectionManager.class);
|
||||||
private final Map<InetSocketAddress, Channel> endpoints = new HashMap<>();
|
private final Map<InetSocketAddress, Channel> endpoints = new HashMap<>();
|
||||||
private final TransportType transportType;
|
private final TransportType transportType;
|
||||||
|
@ -85,15 +85,15 @@ public class VelocityPluginDescription implements PluginDescription {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "VelocityPluginDescription{" +
|
return "VelocityPluginDescription{"
|
||||||
"id='" + id + '\'' +
|
+ "id='" + id + '\''
|
||||||
", name='" + name + '\'' +
|
+ ", name='" + name + '\''
|
||||||
", version='" + version + '\'' +
|
+ ", version='" + version + '\''
|
||||||
", description='" + description + '\'' +
|
+ ", description='" + description + '\''
|
||||||
", url='" + url + '\'' +
|
+ ", url='" + url + '\''
|
||||||
", authors=" + authors +
|
+ ", authors=" + authors
|
||||||
", dependencies=" + dependencies +
|
+ ", dependencies=" + dependencies
|
||||||
", source=" + source +
|
+ ", source=" + source
|
||||||
'}';
|
+ '}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren