| 917 | |
| 918 | #http caller thread |
| 919 | class HTTPThread(threading.Thread): |
| 920 | def run(self): |
| 921 | try: |
| 922 | while flag<2: |
| 923 | code=httpcall(url) |
| 924 | if (code==500) & (safe==1): |
| 925 | set_flag(2) |
| 926 | except Exception, ex: |
| 927 | pass |
| 928 | |
| 929 | # monitors http threads and counts requests |
| 930 | class MonitorThread(threading.Thread): |