Skip to content

Commit 5a7e6d1

Browse files
committed
revert: add limit
1 parent e240d03 commit 5a7e6d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aikido_zen/helpers/serialize_to_json.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def serialize_to_json(obj):
1010
if that fails it returns an empty JSON string "{}"
1111
"""
1212
try:
13-
return json.dumps(obj)[:5000]
13+
return json.dumps(obj)
1414
except Exception:
1515
try:
1616
return json.dumps(dict(obj))

0 commit comments

Comments
 (0)