(cluster: TxCluster, collection: TxCollection)
| 114 | |
| 115 | @defer.inlineCallbacks |
| 116 | def setup(cluster: TxCluster, collection: TxCollection) -> List[str]: |
| 117 | root = str(uuid4())[:8] |
| 118 | keys = yield load_docs(root, collection) |
| 119 | try: |
| 120 | yield load_search_idx(cluster) |
| 121 | except QueryIndexAlreadyExistsException: |
| 122 | pass |
| 123 | |
| 124 | return keys |
| 125 | |
| 126 | |
| 127 | @defer.inlineCallbacks |
no test coverage detected