(self, trace_name: str)
| 73 | await self._start_collecting_stacks(trace_name) |
| 74 | |
| 75 | async def _start_collecting_stacks(self, trace_name: str) -> None: |
| 76 | if not self._is_tracing: |
| 77 | self._is_tracing = True |
| 78 | self._connection.set_is_tracing(True) |
| 79 | self._stacks_id = await self._connection.local_utils.tracing_started( |
| 80 | self._traces_dir, trace_name, self._is_live |
| 81 | ) |
| 82 | |
| 83 | async def stop_chunk(self, path: Union[pathlib.Path, str] = None) -> None: |
| 84 | await self._do_stop_chunk(path) |
no test coverage detected