(cls)
| 1862 | |
| 1863 | @classmethod |
| 1864 | def _terminate_thread(cls): |
| 1865 | # Terminate the live server's thread. |
| 1866 | cls.server_thread.terminate() |
| 1867 | # Restore shared connections' non-shareability. |
| 1868 | for conn in cls.server_thread.connections_override.values(): |
| 1869 | conn.dec_thread_sharing() |
| 1870 | |
| 1871 | |
| 1872 | class SerializeMixin: |
nothing calls this directly
no test coverage detected