Skip to content

Commit

Permalink
fix: move back to 30 min
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrauck-unchained committed Mar 24, 2024
1 parent 200b4a0 commit 229db5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def main():
# Create a scheduler instance
scheduler = BlockingScheduler()

# Schedule the job to run every 15 minutes
scheduler.add_job(fetch_all_feeds, 'interval', minutes=1)
# Schedule the job to run every 30 minutes
scheduler.add_job(fetch_all_feeds, 'interval', minutes=30)

try:
# Start the scheduler
Expand Down

0 comments on commit 229db5a

Please sign in to comment.