File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 5
5
- tarsAdminRegistry supports only historical publishing records (the latest 200 by default), and the configuration can be modified in the template
6
6
- tarsAdminRegistry supports patch timeout configuration, which can be modified in the template
7
7
- Support parameters during deployment, covering configuration files and templates
8
+ - When installing framework slave, if db_tars has not been created, exit
8
9
9
10
### cn
10
11
- 完善部署脚本, 支持overwrite模式, 覆盖配置和模板文件
11
12
- tarsAdminRegistry支持保存历史发布记录(每个服务缺省200条), 可以在模板中修改配置
12
13
- tarsAdminRegistry发布支持超时配置, 可以在模板中修改配置
13
14
- 部署时支持参数, 覆盖配置文件和模板
15
+ - 安装framework slave时, 如果db_tars还没有创建, 则退出
14
16
15
17
## v2.4.6 2020.09.02
16
18
### en
Original file line number Diff line number Diff line change @@ -471,6 +471,12 @@ if [ "${SLAVE}" != "true" ]; then
471
471
LOG_INFO " create master servers" ;
472
472
473
473
exec_mysql_sql db_tars tars_servers_master.sql
474
+ else
475
+ exec_mysql_has " db_tars"
476
+ if [ $? != 0 ]; then
477
+ LOG_ERROR " no db_tars exists, please install master first, install will exit"
478
+ exit 1
479
+ fi
474
480
fi
475
481
476
482
# current server info
You can’t perform that action at this time.
0 commit comments