mirror of
https://gitee.com/Runner-Go-Team/RunnerGo
synced 2025-12-24 08:12:53 +08:00
fix
This commit is contained in:
13
.idea/.gitignore
generated
vendored
Normal file
13
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# 默认忽略的文件
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# 基于编辑器的 HTTP 客户端请求
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
||||
|
||||
# project
|
||||
.idea
|
||||
.DS_Store
|
||||
|
||||
@@ -91,4 +91,7 @@ RG_MEMORY_TOP_LIMIT=80
|
||||
RG_DISK_TOP_LIMIT=70
|
||||
|
||||
# 默认用户登录token的失效时间(单位:小时)
|
||||
RG_DEFAULT_TOKEN_EXPIRE_TIME=24
|
||||
RG_DEFAULT_TOKEN_EXPIRE_TIME=24
|
||||
|
||||
# 保留debug日志时间(单位:月)
|
||||
RG_KEEP_STRESS_DEBUG_LOG_TIME=1
|
||||
@@ -29,7 +29,7 @@ services:
|
||||
networks:
|
||||
- apipost_net
|
||||
manage:
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/manage:releases-v1.1.0
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/manage:releases-v1.1.1
|
||||
restart: always
|
||||
env_file:
|
||||
- ./config.env
|
||||
@@ -40,7 +40,7 @@ services:
|
||||
depends_on:
|
||||
- mysql-db
|
||||
manage-ws:
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/manage-ws:releases-v1.1.0
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/manage-ws:releases-v1.1.1
|
||||
restart: always
|
||||
env_file:
|
||||
- ./config.env
|
||||
@@ -51,7 +51,7 @@ services:
|
||||
depends_on:
|
||||
- mysql-db
|
||||
web-ui:
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/web-ui:releases-v1.1.2
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/web-ui:releases-v1.1.3
|
||||
restart: always
|
||||
ports:
|
||||
- "9999:81"
|
||||
@@ -59,7 +59,7 @@ services:
|
||||
networks:
|
||||
- apipost_net
|
||||
engine:
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/engine:releases-v1.0.3
|
||||
image: registry.cn-beijing.aliyuncs.com/runnergo/engine:releases-v1.1.0
|
||||
restart: always
|
||||
env_file:
|
||||
- ./config.env
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
5
runnergo/mysql/update.sql
Normal file
5
runnergo/mysql/update.sql
Normal file
@@ -0,0 +1,5 @@
|
||||
-- 1.1.3之前的版本需要进入Mysql数据库执行以下sql语句
|
||||
alter table preinstall_conf add column debug_mode varchar(100) not null default 'stop' comment 'debug模式:stop-关闭,all-开启全部日志,only_success-开启仅成功日志,only_error-开启仅错误日志' after control_mode;
|
||||
alter table stress_plan_report add column debug_mode varchar(100) not null default 'stop' comment 'debug模式:stop-关闭,all-开启全部日志,only_success-开启仅成功日志,only_error-开启仅错误日志' after control_mode;
|
||||
alter table stress_plan_task_conf add column debug_mode varchar(100) not null default 'stop' comment 'debug模式:stop-关闭,all-开启全部日志,only_success-开启仅成功日志,only_error-开启仅错误日志' after control_mode;
|
||||
alter table stress_plan_timed_task_conf add column debug_mode varchar(100) not null default 'stop' comment 'debug模式:stop-关闭,all-开启全部日志,only_success-开启仅成功日志,only_error-开启仅错误日志' after control_mode;
|
||||
Reference in New Issue
Block a user