jsonfix
All checks were successful
Deploy on push / deploy (push) Successful in 44s

This commit is contained in:
2025-03-20 12:24:30 +03:00
parent 0aff77eda6
commit ca01181f37
6 changed files with 34 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
import asyncio
import json
import logging
import os
@@ -210,7 +211,7 @@ class SearchService:
"SETEX",
redis_key,
REDIS_TTL,
orjson.dumps(results, cls=CustomJSONEncoder),
json.dumps(results, cls=CustomJSONEncoder),
)
return results
return []