Skip to content

Commit

Permalink
Add additional entities to entity_list in Redis event publisher
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardKruemmel authored and takahiromitsui committed Apr 17, 2024
1 parent fbb4f11 commit 137343f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/entrypoints/redis_scheduled_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,14 @@ def subscribe_updated_entity_prepared():
def publish_entity():
"""Run the Redis event publisher."""
logger.info("Running the Redis event publisher")
entity_list = ["party", "parliament", "parliament-period"]
entity_list = [
"party",
"parliament",
"parliament-period",
"topic",
"committee",
"polls",
]

for entity in entity_list:
redis_eventpublisher.initiate_fetch_missing_data(
Expand Down

0 comments on commit 137343f

Please sign in to comment.