Skip to content

Commit

Permalink
Merge pull request pycassa#227 from thelastpickle/issue-1
Browse files Browse the repository at this point in the history
Add token map to system_manager.
  • Loading branch information
thobbs committed Apr 10, 2014
2 parents e9baafb + 2446a15 commit 15aad9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pycassa/system_manager.py
Expand Up @@ -124,6 +124,10 @@ def describe_ring(self, keyspace):
""" Describes the Cassandra cluster """
return self._conn.describe_ring(keyspace)

def describe_token_map(self):
""" List tokens and their node assignments. """
return self._conn.describe_token_map()

def describe_cluster_name(self):
""" Gives the cluster name """
return self._conn.describe_cluster_name()
Expand Down

0 comments on commit 15aad9f

Please sign in to comment.