mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-18 14:15:09 +00:00
fix: condition for grants for aws rds
This commit is contained in:
parent
c2ebdfcf8b
commit
c2a0e4f057
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ def main():
|
|||
grant_privileges = "ALL PRIVILEGES"
|
||||
|
||||
# for Amazon RDS
|
||||
if config.get(RDS_DB) or site_config.get(RDS_DB)
|
||||
if config.get(RDS_DB) or site_config.get(RDS_DB):
|
||||
grant_privileges = RDS_PRIVILEGES
|
||||
|
||||
command = mysql_command + [f"GRANT {grant_privileges} ON `{db_name}`.* TO '{db_name}'@'%'; FLUSH PRIVILEGES;"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue