I need to send an alert (mail) if a process (python code) takes more than 5 minutes to execute, and also process should continue to run after sending alert !! I am using time.time() for timer, How can it be implemented ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I don't know how to implement it using time.time(), but I suggest that you look at the signal module. First thing you need to do is to set up the handler via This will work only on Unix, though. |
|||
|
|