Author: tross
Date: Tue Sep 16 17:30:10 2014
New Revision: 1625339

URL: http://svn.apache.org/r1625339
Log:
DISPATCH-56 - Fixed get-(metadata) operations

Modified:
    qpid/dispatch/trunk/tools/qdmanage

Modified: qpid/dispatch/trunk/tools/qdmanage
URL: 
http://svn.apache.org/viewvc/qpid/dispatch/trunk/tools/qdmanage?rev=1625339&r1=1625338&r2=1625339&view=diff
==============================================================================
--- qpid/dispatch/trunk/tools/qdmanage (original)
+++ qpid/dispatch/trunk/tools/qdmanage Tue Sep 16 17:30:10 2014
@@ -186,21 +186,21 @@ For help with a command: %s <command> --
         self.setup(
             "Get the list of entity types. Prints a JSON list of type names.",
             [('type', 'string', 'Restrict types implementing <type>.')])
-        self.print_json(self.call_node('get-types'))
+        self.print_json(self.call_node('get_types'))
 
     @commands
     def get_attributes(self):
         self.setup(
             "Get the list of entity attribute names. Prints a JSON list of 
attribute names.",
             [('type', 'string', 'If set return only attributes for <type>.')])
-        self.print_json(self.call_node('get-attributes'))
+        self.print_json(self.call_node('get_attributes'))
 
     @commands
     def get_operations(self):
         self.setup(
             "Get the list of entity operation names. Prints a JSON list of 
operation names.",
             [('type', 'string', 'If set return only operations for <type>.')])
-        self.print_json(self.call_node('get-operations'))
+        self.print_json(self.call_node('get_operations'))
 
 
 def main(argv):



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to