def create_required_databases(my_settings: Settings):
cmd = "mysql -h {hostname} --user={username} --port={port} --password={password} < templates/required_dbs.sql".format(
hostname=my_settings.pcf_rdsaddress,
username=my_settings.pcf_rdsusername,
port=my_settings.pcf_rdsport,
password=my_settings.pcf_rdspassword
)
return util.exponential_backoff_cmd(cmd)
configure_ert.py 文件源码
python
阅读 18
收藏 0
点赞 0
评论 0
评论列表
文章目录