Compare commits

..
4 Commits
Author SHA1 Message Date
dni ⚡ 51c9d294cd chore: update to v0.12.12 2024-10-17 23:06:11 +02:00
dni ⚡ 4e342a7ab2 chore: bump to v0.12.12-rc1 2024-10-16 16:52:17 +02:00
dni ⚡ d7e180d855 chore: update to v0.12.12 2024-10-16 11:56:57 +02:00
Vlad Stananddni ⚡ af863b8c8f fix: await retry (#2739) 2024-10-16 11:56:17 +02:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -85,7 +85,7 @@ async def catch_everything_and_restart(
logger.error(traceback.format_exc())
logger.error("will restart the task in 5 seconds.")
await asyncio.sleep(5)
return catch_everything_and_restart(func, name)
return await catch_everything_and_restart(func, name)
invoice_listeners: Dict[str, asyncio.Queue] = {}
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lnbits"
version = "0.12.11"
version = "0.12.12"
description = "LNbits, free and open-source Lightning wallet and accounts system."
authors = ["Alan Bits <alan@lnbits.com>"]
readme = "README.md"