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

[flare] Add JMXFetch-specific info #1726

Merged
merged 10 commits into from
Jul 2, 2015
Prev Previous commit
[flare] Fix minor typo in error message of _print_output_command
`ouput` --> `output`
olivielpeau committed Jul 2, 2015
commit 4981b5af286180be1bad22f50c6dbca1c93bfeaa
2 changes: 1 addition & 1 deletion utils/flare.py
Original file line number Diff line number Diff line change
@@ -393,7 +393,7 @@ def _print_output_command(self, command):
try:
status = subprocess.check_output(command, stderr=subprocess.STDOUT)
except subprocess.CalledProcessError, e:
status = 'Not able to get ouput, exit number {0}, exit ouput:\n'\
status = 'Not able to get output, exit number {0}, exit output:\n'\
'{1}'.format(str(e.returncode), e.output)
print status