in collection_manager/collection_manager/services/history_manager/FileIngestionHistory.py [0:0]
def _load_history_dict(self):
try:
with open(self._history_file_path, 'r') as f_history:
for line in f_history:
filename, md5sum = line.strip().split(',')
self._history_dict[filename] = md5sum
except FileNotFoundError:
logger.info("No history file created yet")