Heatstack create: fix str/bytes error in NamedTemporaryFile.write() 19/52019/2
authorRoss Brattain <ross.b.brattain@intel.com>
Mon, 12 Feb 2018 03:24:16 +0000 (19:24 -0800)
committerEmma Foley <emma.l.foley@intel.com>
Mon, 12 Feb 2018 10:14:32 +0000 (10:14 +0000)
commit326ca99184b896d75266737466516846df29b447
treef3da13385d55c0a4578c8b6ac20572e57fa13740
parentcaa5354c05e567ee4c6753ed77c819dfa4e2a37e
Heatstack create: fix str/bytes error in NamedTemporaryFile.write()

we need to use jsonutils.dump_as_bytes for NamedTemporaryFile.write()

2018-02-11 19:15:01,366 [INFO] yardstick.orchestrator.heat heat.py:563 Creating stack 'yardstick-4359f33e' START
2018-02-11 19:15:01,935 [ERROR] yardstick.benchmark.contexts.heat heat.py:317 stack failed
Traceback (most recent call last):
  File "/home/rbbratta/yardstick-upstream/yardstick/yardstick/benchmark/contexts/heat.py", line 313, in deploy
    timeout=self.heat_timeout)
  File "/home/rbbratta/yardstick-upstream/yardstick/yardstick/orchestrator/heat.py", line 567, in create
    stack.create(self._template, self.heat_parameters, block, timeout)
  File "/home/rbbratta/yardstick-upstream/yardstick/yardstick/orchestrator/heat.py", line 56, in create
    template_file.write(jsonutils.dumps(template))
  File "/home/rbbratta/yardstick_venv3/lib/python3.5/tempfile.py", line 622, in func_wrapper
    return func(*args, **kwargs)
TypeError: a bytes-like object is required, not 'str'

JIRA: YARDSTICK-1005
Change-Id: I504f23b86119b62f3aea5b83a445b97bf810220c
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
yardstick/orchestrator/heat.py
yardstick/tests/unit/orchestrator/test_heat.py