Adding a few #nosec tags to prepare for Bandit usage
This commit adds a few #nosec tags for non-issues. I've examined the code and determined that these don't represent security issues so we should add a #nosec tag that tells Bandit not to find these issues in the future. Closes-Bug: #1577498 Change-Id: Ic37216c08442c700c64118c78cfb46e6cedd237c
This commit is contained in:
parent
d9fc4c6f40
commit
cc33c103d4
@ -473,7 +473,8 @@ class KollaWorker(object):
|
|||||||
kolla_version = version.version_info.cached_version_string()
|
kolla_version = version.version_info.cached_version_string()
|
||||||
for path in self.docker_build_paths:
|
for path in self.docker_build_paths:
|
||||||
template_name = "Dockerfile.j2"
|
template_name = "Dockerfile.j2"
|
||||||
env = jinja2.Environment(loader=jinja2.FileSystemLoader(path))
|
env = jinja2.Environment( # nosec: not used to render HTML
|
||||||
|
loader=jinja2.FileSystemLoader(path))
|
||||||
template = env.get_template(template_name)
|
template = env.get_template(template_name)
|
||||||
values = {'base_distro': self.base,
|
values = {'base_distro': self.base,
|
||||||
'base_distro_tag': self.base_tag,
|
'base_distro_tag': self.base_tag,
|
||||||
|
2
setup.py
2
setup.py
@ -21,7 +21,7 @@ import setuptools
|
|||||||
# solution from: http://bugs.python.org/issue15881#msg170215
|
# solution from: http://bugs.python.org/issue15881#msg170215
|
||||||
try:
|
try:
|
||||||
import multiprocessing # noqa
|
import multiprocessing # noqa
|
||||||
except ImportError:
|
except ImportError: # nosec : empty pass is expected behavior
|
||||||
pass
|
pass
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
|
Loading…
Reference in New Issue
Block a user