This commit is contained in:
wangjiawei
2023-04-25 11:15:31 +08:00
parent 663a03ba57
commit e4b414dd38
5 changed files with 500 additions and 443 deletions

13
.idea/.gitignore generated vendored Normal file
View File

@@ -0,0 +1,13 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# project
.idea
.DS_Store

View File

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

View File

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

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