Document RabbitMQ monitoring and refine dispatcher filtering

This commit is contained in:
Songbird
2025-11-07 17:52:22 +01:00
parent 44d61ad4bf
commit d33847609f
2 changed files with 14 additions and 1 deletions
+4
View File
@@ -158,6 +158,10 @@ class Dispatcher:
LOGGER.debug("Skipping key without project/category: %s", key)
continue
project_id, category = key_parts[0], key_parts[1]
filename = key_parts[-1]
if filename.startswith("tmp") and "." not in filename:
LOGGER.debug("Skipping temporary upload key: %s", key)
continue
dataset_suffix = self.category_map.get(category)
if not dataset_suffix:
LOGGER.debug("Ignoring category %s for %s", category, key)