| 4252 | |
| 4253 | #http caller thread |
| 4254 | class HTTPThread(threading.Thread): |
| 4255 | def run(self): |
| 4256 | try: |
| 4257 | while flag<2: |
| 4258 | code=httpcall(url) |
| 4259 | if (code==500) & (safe==1): |
| 4260 | set_flag(2) |
| 4261 | except Exception, ex: |
| 4262 | pass |
| 4263 | |
| 4264 | # monitors http threads and counts requests |
| 4265 | class MonitorThread(threading.Thread): |