Commit d5c7290b by Michael DeHaan

Merge pull request #6066 from jsmartin/riak_module_fix

Properly fetching the riak version
parents 58814d08 0e3356c4
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2013, James Martin <jmartin@basho.com>, Drew Kerrigan <dkerrigan@basho.com>
......@@ -164,7 +164,8 @@ def main():
node_name = stats['nodename']
nodes = stats['ring_members']
ring_size = stats['ring_creation_size']
version = stats['riak_core_version']
rc, out, err = module.run_command([riak_bin, 'version'] )
version = out.strip()
result = dict(node_name=node_name,
nodes=nodes,
......
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