Double json_enviado storage limit from 5000 to 10000 chars

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Lizandro Guarnizo
2026-07-11 10:03:32 -05:00
co-authored by Claude Sonnet 4.6
parent cb3b327938
commit 987959a975
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -581,7 +581,7 @@ def _guardar_envio(user_id, tipo, factura, json_data, respuesta, ok,
user_id, tipo, factura, fecha_inicio, fecha_fin,
1, servicios,
"success" if ok else "error",
json_lib.dumps(json_data, indent=2, ensure_ascii=False)[:5000],
json_lib.dumps(json_data, indent=2, ensure_ascii=False)[:10000],
respuesta[:1000] if respuesta else "",
datetime.now().isoformat(),
))