aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/honeycomb
diff options
context:
space:
mode:
authorselias <samelias@cisco.com>2017-02-27 13:56:22 +0100
committerPeter Mikus <pmikus@cisco.com>2017-03-13 07:51:49 +0000
commit86f35c2c60a680b58fca27d9298dd53d02e0138f (patch)
tree8bc91e97e5afff080d871dcf7358da274493ba85 /resources/libraries/python/honeycomb
parent3a761053c1dacc9d5f21ec1ddf75e1f192473f2c (diff)
HC Test: create Vlan sub-interface using netconf
- add netconf test for specific issue HC2VPP-60 Change-Id: I8fc64bce40f1e43d93e7e92c952e564151bc8232 Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'resources/libraries/python/honeycomb')
-rw-r--r--resources/libraries/python/honeycomb/Netconf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/resources/libraries/python/honeycomb/Netconf.py b/resources/libraries/python/honeycomb/Netconf.py
index e3cdbe5dce..770af95afa 100644
--- a/resources/libraries/python/honeycomb/Netconf.py
+++ b/resources/libraries/python/honeycomb/Netconf.py
@@ -154,14 +154,20 @@ class Netconf(object):
return response
- def send(self, message):
+ def send(self, message, **params):
"""Sends provided message through the channel.
:param message: Message to be sent to Honeycomb.
+ :param params: Format the message string with these parameters.
:type message: str
+ :type params: dict
"""
+ message = message.format(**params)
+
if not message.endswith(self.delimiter):
message += self.delimiter
+ logger.debug(message)
+
self.channel.send(message)