Skip to content

Commit

Permalink
Merge pull request #1052 from csordasmarton/report_filter_performance
Browse files Browse the repository at this point in the history
Increase report filter performance
  • Loading branch information
gyorb authored Oct 27, 2017
2 parents ea0564f + d25bfa4 commit 64e128e
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 @@ -435,12 +435,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 64e128e

Please sign in to comment.