[fix] Small bandit changes (#3241)

This commit is contained in:
Vlad Stan
2025-07-15 11:14:20 +02:00
committed by dni ⚡
parent 0529ee2835
commit e0749e186e
16 changed files with 125 additions and 34 deletions
+4 -2
View File
@@ -248,7 +248,8 @@ async def m007_set_invoice_expiries(db: Connection):
""",
{"expiry": expiration_date, "checking_id": checking_id},
)
except Exception:
except Exception as exc:
logger.debug(exc)
continue
except OperationalError:
# this is necessary now because it may be the case that this migration will
@@ -371,7 +372,8 @@ async def m014_set_deleted_wallets(db: Connection):
"wallet": row.get("id"),
},
)
except Exception:
except Exception as exc:
logger.debug(exc)
continue
except OperationalError:
# this is necessary now because it may be the case that this migration will
+4 -4
View File
@@ -67,16 +67,16 @@ async def redeem_lnurl_withdraw(
external=True,
wal=wallet_id,
)
except Exception:
pass
except Exception as exc:
logger.debug(exc)
headers = {"User-Agent": settings.user_agent}
async with httpx.AsyncClient(headers=headers) as client:
try:
check_callback_url(res["callback"])
await client.get(res["callback"], params=params)
except Exception:
pass
except Exception as exc:
logger.debug(exc)
async def perform_lnurlauth(
+2 -2
View File
@@ -557,8 +557,8 @@ def _find_auth_provider_class(provider: str) -> Callable:
provider_class = getattr(provider_module, f"{provider.title()}SSO")
if provider_class:
return provider_class
except Exception:
pass
except Exception as exc:
logger.debug(exc)
raise ValueError(f"No SSO provider found for '{provider}'.")