From 6476a2b64a2e1ea6c0d695127d726a348cc5c99b Mon Sep 17 00:00:00 2001 From: Ondrej Fabry Date: Thu, 31 Jan 2019 08:23:02 +0100 Subject: Generator improvements - all objects are now sorted alphabetically for more consistent output - unions now have constructor generated - log level for warnings was changed to debug - GetAllMessages renamed to GetRegisteredMessages Change-Id: I976453004a2fd8b6cb95ca0acfcef56913bf8d38 Signed-off-by: Ondrej Fabry --- core/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/connection.go') diff --git a/core/connection.go b/core/connection.go index 042a2af..08f08f5 100644 --- a/core/connection.go +++ b/core/connection.go @@ -248,7 +248,7 @@ func (c *Connection) retrieveMessageIDs() (err error) { c.msgMap[msgID] = msg } - msgs := api.GetAllMessages() + msgs := api.GetRegisteredMessages() for name, msg := range msgs { msgID, err := c.vppClient.GetMsgID(msg.GetMessageName(), msg.GetCrcString()) -- cgit 1.2.3-korg