Skip to content

Commit d25f3fc

Browse files
tylerwinceericwb
authored andcommittedJun 22, 2019
Performance fix (#502)
* Fix #490 -- Fix performance issue introduced in 1.6.0 The lines were introduced in 7c4b9fa and have two effects. First they cause `get_issue_list` to run twice and before the user receives feedback that bandit started running. Secondly it does not display any output if no issues are found, which is an unintended behavior change. * add namespaces for parent attributes * pylint formatting changes * made bandit_parent a private attr * temporary fix; perf issue only on quiet * update perf issue
1 parent 047e6bf commit d25f3fc

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed
 

‎bandit/formatters/screen.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ def report(manager, fileobj, sev_level, conf_level, lines=-1):
172172
"""
173173

174174
bits = []
175-
issues = manager.get_issue_list(sev_level, conf_level)
176-
if len(issues) or not manager.quiet:
175+
if not manager.quiet or manager.results_count(sev_level, conf_level):
177176
bits.append(header("Run started:%s", datetime.datetime.utcnow()))
178177

179178
if manager.verbose:

‎bandit/formatters/text.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,8 @@ def report(manager, fileobj, sev_level, conf_level, lines=-1):
141141
"""
142142

143143
bits = []
144-
issues = manager.get_issue_list(sev_level, conf_level)
145144

146-
if len(issues) or not manager.quiet:
145+
if not manager.quiet or manager.results_count(sev_level, conf_level):
147146
bits.append("Run started:%s" % datetime.datetime.utcnow())
148147

149148
if manager.verbose:

0 commit comments

Comments
 (0)
Please sign in to comment.