Commit be917e3e by Michael DeHaan

Merge pull request #2667 from jsmartin/devel

Added catch-all exception for riak stats collection.
parents 62fe4cc3 93d0ccd1
......@@ -193,6 +193,8 @@ def main():
stats_raw = status_to_json()
except urllib2.URLError, e:
stats_raw = status_to_json()
except Exception, e:
stats_raw = status_to_json()
stats = json.loads(stats_raw)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment