Added catch-all exception for stats collection.

This commit is contained in:
James Martin 2013-04-12 20:28:39 -04:00
parent ccb5bd3ecf
commit c6b787cc42

2
riak
View file

@ -193,6 +193,8 @@ def main():
stats_raw = status_to_json() stats_raw = status_to_json()
except urllib2.URLError, e: except urllib2.URLError, e:
stats_raw = status_to_json() stats_raw = status_to_json()
except Exception, e:
stats_raw = status_to_json()
stats = json.loads(stats_raw) stats = json.loads(stats_raw)