Hi there,
I have two scripts effectively polling two different APIs at different intervals and am using the threading module.
I notice that my first script has been running perfectly for over a day now, but my second one just doesn't run beyond the first iteration of the thread (10 seconds) and just stops.
It all works fine locally, so was wondering what I can do differently to make it run on PA? I have a hacker account, and am well below daily CPU usage limits.
The logic is roughly:
Function 1:
Check API 1 at 10 min intervals
Function 2:
Check API 2 at 10 second intervals
Do stuff if conditions matched