b8ce0940159022a61a2709e615dade45b53f97ef,sbin/db_mgmt_ref.py,VIADownloads,process_item,#VIADownloads#Any#,73
Before Change
if self.is_update:
return UpdateOne({"id": key}, {"$set": entry_dict}, upsert=True, )
else:
return InsertOne(entry_dict)
def update(self, **kwargs):
self.logger.info("VIA4 database update started")
After Change
if self.is_update:
self.queue.put(
DatabaseAction(
action=DatabaseAction.actions.UpdateOne,
collection=self.feed_type.lower(),
doc=item,
)
)
else:
self.queue.put(
DatabaseAction(
action=DatabaseAction.actions.InsertOne,
collection=self.feed_type.lower(),
doc=item,
)
)
def update(self, **kwargs):
self.logger.info("VIA4 database update started")
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 12
Instances
Project Name: cve-search/cve-search
Commit Name: b8ce0940159022a61a2709e615dade45b53f97ef
Time: 2020-08-17
Author: paul.tikken@gmail.com
File Name: sbin/db_mgmt_ref.py
Class Name: VIADownloads
Method Name: process_item
Project Name: cve-search/cve-search
Commit Name: b8ce0940159022a61a2709e615dade45b53f97ef
Time: 2020-08-17
Author: paul.tikken@gmail.com
File Name: sbin/db_mgmt_ref.py
Class Name: VIADownloads
Method Name: process_item
Project Name: cve-search/cve-search
Commit Name: c24266f9c5f61fe74a0a83c82afd35b4a24b59b0
Time: 2020-08-17
Author: paul.tikken@gmail.com
File Name: sbin/db_mgmt_json.py
Class Name: CVEDownloads
Method Name: process_item
Project Name: cve-search/cve-search
Commit Name: 89b1b1062d6005f430adae14b282be69e12371c4
Time: 2020-08-15
Author: paul.tikken@gmail.com
File Name: sbin/db_mgmt_cpe_dictionary.py
Class Name: CPEDownloads
Method Name: process_item