I deployed my python script on Heroku and trying to setup scheduler to run it every hour.
My Procfile:
run: cd src && python3 main.py
I scale this dyno with:
heroku ps:scale run=1
And in heroku scheduler I set it for run every hour with command
run
Deploy and I think that it will runs every hour, but it runs more often than I expect, every 10-15 minutes, how can I solve it?