-
Notifications
You must be signed in to change notification settings - Fork 682
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
add port support for centos #241
Conversation
chris-rock
commented
Nov 16, 2015
- fixes port resource does not work on CentOS #239
- improves regular expression to parse port data
process: process, | ||
pid: pid, | ||
} | ||
rescue |
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.
Why the rescue and what errors are caught?
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.
this stabilizes the implementation. In case we cannot parse the line, the whole test will not fail. otherwise a single non-parseable line crashes the whole test
@arlimus great feedback, I restricted the rescue to |
Great addition and bonus bugfix!! |