Fetches and returns the query traces for all query pages, if tracing was enabled. See note in :meth:`~.get_query_trace` regarding possible exceptions.
(self, max_wait_per=None, query_cl=ConsistencyLevel.LOCAL_ONE)
| 5040 | return self._get_query_trace(len(self._query_traces) - 1, max_wait, query_cl) |
| 5041 | |
| 5042 | def get_all_query_traces(self, max_wait_per=None, query_cl=ConsistencyLevel.LOCAL_ONE): |
| 5043 | """ |
| 5044 | Fetches and returns the query traces for all query pages, if tracing was enabled. |
| 5045 | |
| 5046 | See note in :meth:`~.get_query_trace` regarding possible exceptions. |
| 5047 | """ |
| 5048 | if self._query_traces: |
| 5049 | return [self._get_query_trace(i, max_wait_per, query_cl) for i in range(len(self._query_traces))] |
| 5050 | return [] |
| 5051 | |
| 5052 | def _get_query_trace(self, i, max_wait, query_cl): |
| 5053 | trace = self._query_traces[i] |
nothing calls this directly
no test coverage detected