Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(db): allow
DB_RESULT_LIMIT
to be set as an integer
Previously, `DB_RESULT_LIMIT` was treated as a string, preventing it from being set dynamically. This update ensures it is parsed as an integer, fixing the issue. Updated logic: `result_limit = int(config.get("DB_RESULT_LIMIT", 250000))`.
- Loading branch information