Skip to content

Commit

Permalink
Special logging for finishing a full loop.
Browse files Browse the repository at this point in the history
  • Loading branch information
emmiegit committed Jan 15, 2024
1 parent 30df41b commit 66bce33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yellowstone/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ def __init__(self, config) -> None:
def run(self) -> NoReturn:
logger.info("Running Yellowstone dispatcher")
while True:
logger.info("Starting new process cycle")
self.insert_all_sites()
self.queue_all_sites()
self.process_all_jobs()
logger.info("Finished everything! Starting new process cycle")

def insert_all_sites(self) -> None:
for site_slug in self.config.site_slugs:
Expand Down

0 comments on commit 66bce33

Please sign in to comment.