Skip to content

Commit

Permalink
Merge pull request #2 from citrusleaf/all_changes
Browse files Browse the repository at this point in the history
minor changes in help statements
  • Loading branch information
citrusraj committed Jan 13, 2016
2 parents 47f826e + 42099a2 commit 0200993
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class InfoController(CommandController):
def __init__(self):
self.modifiers = set(['with'])

@CommandHelp('Displays service, network, namespace, and xdr summary'
@CommandHelp('Displays service, network, set, namespace, xdr, and sindex summary'
, 'information.')
def _do_default(self, line):
actions = (util.Future(self.do_service, line).start()
Expand Down Expand Up @@ -227,7 +227,7 @@ def do_xdr(self, line):
xdr_enable = xdr_enable.result()
return util.Future(self.view.infoXDR, stats, builds, xdr_enable, self.cluster, **self.mods)

@CommandHelp('Displays summary information for Seconday Indexes (SIndex).')
@CommandHelp('Displays summary information for Secondary Indexes (SIndex).')
def do_sindex(self, line):
sindex_stats = get_sindex_stats(self.cluster, self.nodes)
return util.Future(self.view.infoSIndex, sindex_stats, self.cluster, **self.mods)
Expand Down Expand Up @@ -733,7 +733,7 @@ class ShowStatisticsController(CommandController):
def __init__(self):
self.modifiers = set(['with', 'like'])

@CommandHelp('Displays bin, set, service, namespace, and xdr statistics')
@CommandHelp('Displays bin, set, service, namespace, xdr, and sindex statistics')
def _do_default(self, line):
actions = (util.Future(self.do_bins, line).start()
, util.Future(self.do_sets, line).start()
Expand Down Expand Up @@ -777,7 +777,7 @@ def do_namespace(self, line):



@CommandHelp('Displays namespace statistics')
@CommandHelp('Displays sindex statistics')
def do_sindex(self, line):
sindex_stats = get_sindex_stats(self.cluster, self.nodes)
return [util.Future(self.view.showStats
Expand Down

0 comments on commit 0200993

Please sign in to comment.