forked from p15670423/monkey
Island: Don't drop collections that starts with "config"
Fixes #2210 PR #2227
This commit is contained in:
parent
4af38f6e8a
commit
6adacf702e
|
@ -36,6 +36,7 @@ class Database(object):
|
|||
return (
|
||||
not collection.startswith("system.")
|
||||
and not collection == AttackMitigations.COLLECTION_NAME
|
||||
and not collection.startswith("config")
|
||||
)
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in New Issue