13
0
geforkt von Mirrors/Velocity

Bump write mark, to see if it improves #152

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-12-15 21:13:52 -05:00
Ursprung 4b5664ec91
Commit ca915a44a9
2 geänderte Dateien mit 12 neuen und 12 gelöschten Zeilen

Datei anzeigen

@ -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;

Datei anzeigen

@ -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
'}'; + '}';
} }
} }