Skip to content

Commit

Permalink
Increase report filter performance
Browse files Browse the repository at this point in the history
  • Loading branch information
csordasmarton committed Oct 27, 2017
1 parent 85fffca commit d25bfa4
Show file tree
Hide file tree
Showing 2 changed files with 247 additions and 210 deletions.
8 changes: 3 additions & 5 deletions libcodechecker/cmd/cmd_line_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,12 +432,10 @@ def checker_count(dict, key):

client = setup_client(args.product_url)

if 'all_results' in args:
items = check_run_names(client, None)
else:
run_ids = None
if 'all_results' not in args:
items = check_run_names(client, args.names)

run_ids = map(lambda run: run.runId, items.values())
run_ids = map(lambda run: run.runId, items.values())

all_checkers_report_filter = ttypes.ReportFilter()
all_checkers_report_filter.isUnique = True
Expand Down
Loading

0 comments on commit d25bfa4

Please sign in to comment.