blitz_api/app/lightning/impl
fusion44 868457ffa5
fix(api): replace deprecated asyncio.get_event_loop()
get_event_loop() is deprecated on Python 3.11+ when there is no running
loop and is slated to change behaviour further.

- SSEManager.setup() ran at import time (app.api.utils) via
  get_event_loop(); this only worked because uvicorn imports the app
  inside its loop and would break when imported without a running loop
  (e.g. a Celery worker). Start the broadcast consumer lazily from
  within a running loop instead.
- everywhere else the pattern was get_event_loop().create_task(x)
  inside a coroutine; replace with asyncio.create_task(x).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-03 22:34:44 +02:00
..
protos chore: update deps and flake file 2024-12-16 15:20:46 +01:00
specializations fix(lightning): prevent shell injection in CLN local calls 2026-07-03 19:58:41 +02:00
__init__.py refactor: switch to domain driven directory layout 2022-10-03 20:22:00 +02:00
cln_grpc.py fix(lightning): prevent shell injection in CLN local calls 2026-07-03 19:58:41 +02:00
cln_jrpc.py fix(lightning): include payments in CLN list_all_tx 2026-07-03 20:45:21 +02:00
cln_utils.py feat: implement Ruff as a linter; fix given errors 2023-06-25 07:17:00 +02:00
ln_base.py refactor: switch to domain driven directory layout 2022-10-03 20:22:00 +02:00
lnd_grpc.py fix(api): replace deprecated asyncio.get_event_loop() 2026-07-03 22:34:44 +02:00