(index)
| 298 | results = [None] * count |
| 299 | |
| 300 | def _one(index): |
| 301 | results[index] = run_cli(binary, cache, ["cli", "list_projects", "{}"], timeout=120) |
| 302 | |
| 303 | threads = [threading.Thread(target=_one, args=(i,)) for i in range(count)] |
| 304 | for thread in threads: |