This commit is contained in:
hjlarry 2025-12-11 15:39:33 +08:00
parent 66ee07154d
commit cd51bfb568
1 changed files with 2 additions and 2 deletions

View File

@ -41,10 +41,10 @@ class BillingService:
try:
resp = cls._send_request("POST", "/subscription/plan/batch", json={"tenant_ids": tenant_ids})
return resp.get("data", {})
except Exception:
logger.exception("Failed to fetch billing info batch for tenants: %s", tenant_ids)
return resp.get("data", {})
return {}
@classmethod
def get_tenant_feature_plan_usage_info(cls, tenant_id: str):