mirror of
https://github.com/langgenius/dify.git
synced 2026-09-21 13:20:52 +08:00
orm filter -> where (#22801)
Signed-off-by: -LAN- <laipz8200@outlook.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
co-authored by
-LAN-
Claude
parent
e64e7563f6
commit
ef51678c73
@@ -12,7 +12,7 @@ logger = logging.getLogger(__name__)
|
||||
|
||||
@shared_task(queue="dataset")
|
||||
def delete_account_task(account_id):
|
||||
account = db.session.query(Account).filter(Account.id == account_id).first()
|
||||
account = db.session.query(Account).where(Account.id == account_id).first()
|
||||
try:
|
||||
BillingService.delete_account(account_id)
|
||||
except Exception as e:
|
||||
|
||||
Reference in New Issue
Block a user