Merge pull request #393 from arcbtc/FastAPI

cln sse should be working
This commit is contained in:
Arc 2021-11-03 22:56:16 +00:00 committed by GitHub
commit c063e245dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,9 +187,7 @@ class SparkWallet(Wallet):
while True: while True:
try: try:
async with httpx.AsyncClient( async with httpx.AsyncClient(timeout=None) as client:
timeout=None, headers=self.token
) as client:
async with client.stream("GET", url) as r: async with client.stream("GET", url) as r:
async for line in r.aiter_lines(): async for line in r.aiter_lines():
if line.startswith("data:"): if line.startswith("data:"):