fix #2686 set adaptive.load.control to 50
This commit is contained in:
parent
dd4e800e09
commit
cc5f91c6dd
2 changed files with 5 additions and 5 deletions
|
@ -211,7 +211,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|||
/** The key of the configuration. e.g. 4000 */
|
||||
String MAX_LOG_OUTPUT_LENGTH = "max.log.output.length";
|
||||
|
||||
/** The key of the configuration. e.g. 0 */
|
||||
/** The key of the configuration. e.g. 50 */
|
||||
String ADAPTIVE_LOAD_CONTROL = "adaptive.load.control";
|
||||
|
||||
/** The key of the configuration. e.g. js */
|
||||
|
@ -2164,14 +2164,14 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|||
|
||||
/**
|
||||
* Get the value for the key 'adaptive.load.control'. <br>
|
||||
* The value is, e.g. 0 <br>
|
||||
* The value is, e.g. 50 <br>
|
||||
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
||||
*/
|
||||
String getAdaptiveLoadControl();
|
||||
|
||||
/**
|
||||
* Get the value for the key 'adaptive.load.control' as {@link Integer}. <br>
|
||||
* The value is, e.g. 0 <br>
|
||||
* The value is, e.g. 50 <br>
|
||||
* @return The value of found property. (NotNull: if not found, exception but basically no way)
|
||||
* @throws NumberFormatException When the property is not integer.
|
||||
*/
|
||||
|
@ -10476,7 +10476,7 @@ public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction
|
|||
defaultMap.put(FessConfig.PATH_ENCODING, "UTF-8");
|
||||
defaultMap.put(FessConfig.USE_OWN_TMP_DIR, "true");
|
||||
defaultMap.put(FessConfig.MAX_LOG_OUTPUT_LENGTH, "4000");
|
||||
defaultMap.put(FessConfig.ADAPTIVE_LOAD_CONTROL, "0");
|
||||
defaultMap.put(FessConfig.ADAPTIVE_LOAD_CONTROL, "50");
|
||||
defaultMap.put(FessConfig.SUPPORTED_UPLOADED_JS_EXTENTIONS, "js");
|
||||
defaultMap.put(FessConfig.SUPPORTED_UPLOADED_CSS_EXTENTIONS, "css");
|
||||
defaultMap.put(FessConfig.SUPPORTED_UPLOADED_MEDIA_EXTENTIONS, "jpg,jpeg,gif,png,swf");
|
||||
|
|
|
@ -157,7 +157,7 @@ python.command.path=python
|
|||
path.encoding=UTF-8
|
||||
use.own.tmp.dir=true
|
||||
max.log.output.length=4000
|
||||
adaptive.load.control=0
|
||||
adaptive.load.control=50
|
||||
supported.uploaded.js.extentions=js
|
||||
supported.uploaded.css.extentions=css
|
||||
supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
|
||||
|
|
Loading…
Add table
Reference in a new issue