Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Jul 3, 2024
1 parent 7d32309 commit 033db86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/mysql-apt/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -3289,7 +3289,7 @@ def doFullSyncUser(version=''):
mw.execShell(my_import_cmd)

if mw.inArray(mdb8, version):
db.query("start slave user='{}' password='{}';".format(user, apass))
db.query("start replica user='{}' password='{}';".format(user, apass))
else:
db.query("start slave")

Expand Down
2 changes: 1 addition & 1 deletion plugins/mysql-yum/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -3272,7 +3272,7 @@ def doFullSyncUser(version=''):


if mw.inArray(mdb8, version):
db.query("start slave user='{}' password='{}';".format(user, apass))
db.query("start replica user='{}' password='{}';".format(user, apass))
else:
db.query("start slave")

Expand Down

0 comments on commit 033db86

Please sign in to comment.