We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 612cd12 commit 536b82cCopy full SHA for 536b82c
1 file changed
bin/ranking.py
@@ -34,6 +34,9 @@ def rank_a_day(self, day: str):
34
cached_meta: Dict[str, Dict[str, Any]] = {}
35
config_files = load_all_modules_configs()
36
for source in self.storage.smembers(f'{day}|sources'):
37
+ if source not in config_files:
38
+ # get it again, just in case it is created after we open them
39
+ config_files = load_all_modules_configs()
40
self.logger.info(f'{day} - Ranking source: {source}')
41
source_aggregation_key_v4 = f'{day}|{source}|asns|v4'
42
source_aggregation_key_v6 = f'{day}|{source}|asns|v6'
0 commit comments