还原
This commit is contained in:
@@ -55,8 +55,8 @@ public class HttpContext extends Context {
|
||||
|
||||
public HttpContext(HttpContextConfig config) {
|
||||
super(config);
|
||||
this.lazyHeader = true || config.lazyHeader;
|
||||
this.sameHeader = true || config.sameHeader;
|
||||
this.lazyHeader = config.lazyHeader;
|
||||
this.sameHeader = config.sameHeader;
|
||||
this.remoteAddrHeader = config.remoteAddrHeader;
|
||||
this.remoteAddrHeaders = config.remoteAddrHeaders;
|
||||
this.localHeader = config.localHeader;
|
||||
|
||||
@@ -155,7 +155,7 @@ public abstract class AbstractDataSqlSource extends AbstractDataSource
|
||||
|
||||
this.autoDDL = "true".equals(readConfProps.getProperty(DATA_SOURCE_TABLE_AUTODDL, "false"));
|
||||
this.cacheForbidden = "NONE".equalsIgnoreCase(readConfProps.getProperty(DATA_SOURCE_CACHEMODE));
|
||||
this.clientNonBlocking = true || "true".equalsIgnoreCase(readConfProps.getProperty(DATA_SOURCE_NON_BLOCKING, "false"));
|
||||
this.clientNonBlocking = "true".equalsIgnoreCase(readConfProps.getProperty(DATA_SOURCE_NON_BLOCKING, "false"));
|
||||
this.slowmsWarn = Integer.parseInt(
|
||||
readConfProps.getProperty(DATA_SOURCE_SLOWMS_WARN, "2000").trim());
|
||||
this.slowmsError = Integer.parseInt(
|
||||
|
||||
Reference in New Issue
Block a user