Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sourcery Starbot ⭐ refactored leafonsword/db-topology #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

SourceryAI
Copy link

Thanks for starring sourcery-ai/sourcery ✨ 🌟 ✨

Here's your pull request refactoring your most popular Python repo.

If you want Sourcery to refactor all your Python repos and incoming pull requests install our bot.

Review changes via command line

To manually merge these changes, make sure you're on the master branch, then run:

git fetch https://github.com/sourcery-ai-bot/db-topology master
git merge --ff-only FETCH_HEAD
git reset HEAD^

Comment on lines -16 to +36
g.add_node(host + ':' + port)
g.add_node(f'{host}:{port}')
try:
cnx = mysql.connector.connect(
host=host, port=port, user=user, password=password)
cursor = cnx.cursor()
query = (
"show slave status;select host from INFORMATION_SCHEMA.PROCESSLIST where command = 'Binlog Dump';show slave hosts;")
l = []
for result in cursor.execute(query, multi=True):
l.append(result.fetchall())
l = [result.fetchall() for result in cursor.execute(query, multi=True)]
# print(l[0])

if l[1] != []:
for k in range(0, len(l[1])):
for k in range(len(l[1])):
slave_host = str(l[1][k][0].split(':')[0])
slave_port = str(l[2][k][2])
g.add_node(slave_host + ':' + slave_port)
g.add_edge(slave_host + ':' + slave_port, host + ':' + port)
g.add_node(f'{slave_host}:{slave_port}')
g.add_edge(f'{slave_host}:{slave_port}', f'{host}:{port}')
find_top(slave_host, slave_port)
if l[0] != []:
master_host = str(l[0][0][1])
master_port = str(l[0][0][3])
if master_host+':'+master_port not in g:
if f'{master_host}:{master_port}' not in g:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function find_top refactored with the following changes:

Repository owner deleted a comment Feb 2, 2024
@github-staff github-staff deleted a comment Apr 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant