Sourcery Starbot ⭐ refactored leafonsword/db-topology#2
Open
SourceryAI wants to merge 1 commit intoleafonsword:masterfrom
Open
Sourcery Starbot ⭐ refactored leafonsword/db-topology#2SourceryAI wants to merge 1 commit intoleafonsword:masterfrom
SourceryAI wants to merge 1 commit intoleafonsword:masterfrom
Conversation
SourceryAI
commented
Feb 20, 2023
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: |
Author
There was a problem hiding this comment.
Function find_top refactored with the following changes:
- Use f-string instead of string concatenation [×10] (
use-fstring-for-concatenation) - Convert for loop into list comprehension (
list-comprehension) - Replace range(0, x) with range(x) (
remove-zero-from-range)
Repository owner
deleted a comment
Feb 2, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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
masterbranch, then run: