-
Notifications
You must be signed in to change notification settings - Fork 108
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
Fix hardcoded uid in __str__ method of Server class #557
Conversation
Reviewer's Guide by SourceryThe pull request fixes a bug where the Server class's str method was hardcoding the socket path. The fix replaces the hardcoded user id with a call to os.geteuid() to dynamically determine the user id. Class diagram showing the Server class str method updateclassDiagram
class Server {
+socket_path: str
+__repr__() str
}
note for Server "Changed __repr__ to use dynamic UID
instead of hardcoded 1000"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @lazysegtree - I've reviewed your changes - here's some feedback:
Overall Comments:
- You need to import the 'os' module at the top of the file to use os.geteuid()
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Yes. Its already imported. |
@tony Can you check this ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense to me.
Good catch and thank you @lazysegtree!
P.S. I rebased the branch, I hope you don't mind! You will still get credit for the PR, commit, and also credited in the changelog.
Thanks @tony . And, many thanks for the library. I need to do a tmux automation, and I was going to write a wrapper myself, but I was glad when I found there was an existing library, and a well maintained one. |
Thanks again for the contribution, and happy this got in, @lazysegtree! Glad to know you found the library - more good things on the way here! |
See - #556
Summary by Sourcery
Bug Fixes:
os.geteuid()
to dynamically determine the user's uid when generating the default socket path.