Skip to content

Commit

Permalink
更新RM
Browse files Browse the repository at this point in the history
  • Loading branch information
xuxueli committed Aug 17, 2017
1 parent e4976f3 commit 6df1fa8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/XXL-JOB官方文档.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ XXL-JOB是一个轻量级分布式任务调度框架,其核心设计目标是
xxl.job.executor.ip=
xxl.job.executor.port=9999

### xxl-job log path:执行器运行日志文件存储的磁盘位置
### xxl-job log path:执行器运行日志文件存储的磁盘位置,需要对该路径拥有读写权限
xxl.job.executor.logpath=/data/applogs/xxl-job/jobhandler/

### xxl-job, access token:执行器通讯TOKEN,非空时启用
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public ReturnT<String> clearLog(int jobGroup, int jobId, int type){
} else if (type == 8) {
clearBeforeNum = 100000; // 清理十万条以前日志数据
} else if (type == 9) {
clearBeforeNum = 0; // 清理所用日志数据
clearBeforeNum = 0; // 清理所有日志数据
} else {
return new ReturnT<String>(ReturnT.FAIL_CODE, "清理类型参数异常");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
<option value="6" >清理一万条以前日志数据</option>
<option value="7" >清理三万条以前日志数据</option>
<option value="8" >清理十万条以前日志数据</option>
<option value="9" >清理所用日志数据</option>
<option value="9" >清理所有日志数据</option>
</select>
</div>
</div>
Expand Down

0 comments on commit 6df1fa8

Please sign in to comment.