(self)
| 82 | self.opman = None |
| 83 | |
| 84 | def tearDown(self): |
| 85 | try: |
| 86 | if self.opman: |
| 87 | self.opman.join() |
| 88 | except RuntimeError: |
| 89 | pass |
| 90 | close_client(self.primary_conn) |
| 91 | self.repl_set.stop() |
| 92 | |
| 93 | def initOplogThread(self, namespace_set=None): |
| 94 | self.docman = CommandLoggerDocManager() |
nothing calls this directly
no test coverage detected