Skip to content

Commit

Permalink
Merge pull request #17 from pdvian/wip-fix-report-coredump
Browse files Browse the repository at this point in the history
coredump-report: Fix OSError for ulimit command
  • Loading branch information
aravindavk authored Oct 13, 2017
2 parents e5a6d79 + 6c17e46 commit cae4954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glusterhealth/reports/coredump.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from utils import command_output, CommandError

def report_coredump(ctx):
cmd = ["ulimit", "-c"]
cmd = "ulimit -c"
try:
out = command_output(cmd)
if out.strip() == "unlimited":
Expand Down

0 comments on commit cae4954

Please sign in to comment.