Skip to content

Commit

Permalink
exclude deleted records from find-duplicate -s enterprise, release …
Browse files Browse the repository at this point in the history
…version bump
  • Loading branch information
aaunario-keeper committed Aug 23, 2024
1 parent d60f91f commit b29ded5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion keepercommander/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
# Contact: ops@keepersecurity.com
#

__version__ = '16.11.10'
__version__ = '16.11.11'
2 changes: 1 addition & 1 deletion keepercommander/commands/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ def scan_enterprise_vaults():

sox_data = sox.get_compliance_data(params, node_id, enterprise_id, rebuild=refresh_data,
min_updated=update_floor_ts)
records = sox_data.get_records().values()
records = [r for r in sox_data.get_records().values() if not r.in_trash]
recs_by_hash = {}

for sd_rec in records:
Expand Down

0 comments on commit b29ded5

Please sign in to comment.