(idx)
| 354 | errors = {} |
| 355 | |
| 356 | def query(idx): |
| 357 | try: |
| 358 | with SerialStudioClient() as c: |
| 359 | results[idx] = c.command("licensing.getStatus") |
| 360 | except Exception as e: |
| 361 | errors[idx] = str(e) |
| 362 | |
| 363 | threads = [threading.Thread(target=query, args=(i,)) for i in range(8)] |
| 364 | for t in threads: |
nothing calls this directly
no test coverage detected