Cleanup on shutdown.
(self)
| 475 | } |
| 476 | |
| 477 | def close(self): |
| 478 | """Cleanup on shutdown.""" |
| 479 | self.cache.clear() |
| 480 | if self.db_connection and self.db_connection != "connected": |
| 481 | self.db_connection.close() |
| 482 | |
| 483 | |
| 484 | class ScheduledWorker(DirtyApp): |