diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-02-23 01:33:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-23 01:33:48 +0000 |
commit | c0ad3eb3d5cdcb6b1cdc529f6cfcfc1922f86f8d (patch) | |
tree | 9f4d4e62f4a70fd64488c03d0b36236d67d7dab3 | |
parent | abb464c9cf8e531580a6e36db70ef44adf7d7b94 (diff) | |
parent | ac174eeb98cf8318f4acf2ae8f5c0e9d6df8c312 (diff) |
Merge "collectd: typo and call super()"
-rw-r--r-- | yardstick/network_services/nfvi/collectd.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yardstick/network_services/nfvi/collectd.py b/yardstick/network_services/nfvi/collectd.py index ea80e4ff8..f2c9d40a7 100644 --- a/yardstick/network_services/nfvi/collectd.py +++ b/yardstick/network_services/nfvi/collectd.py @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -""" AMQP Consumer senario definition """ +""" AMQP Consumer scenario definition """ from __future__ import absolute_import from __future__ import print_function @@ -28,6 +28,7 @@ class AmqpConsumer(object): ROUTING_KEY = 'collectd' def __init__(self, amqp_url, queue): + super(AmqpConsumer, self).__init__() self._connection = None self._channel = None self._closing = False |