()
| 92 | |
| 93 | # Always run in a separate thread to avoid event loop issues |
| 94 | def run_in_thread(): |
| 95 | return asyncio.run(get_jwt_token(api_key)) |
| 96 | |
| 97 | with concurrent.futures.ThreadPoolExecutor() as executor: |
| 98 | future = executor.submit(run_in_thread) |
nothing calls this directly
no test coverage detected
searching dependent graphs…