-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve JSON Parsing Error Handling in parse_hedge_fund_response() in main.py #141
Comments
|
This is a great idea @yashar1908 - can you create a Pull Request? |
Sure, I will go ahead and do that, thanks. |
Hi Yashar, fantastic work catching this—your update to parse_hedge_fund_response() is a real improvement! Switching from that broad except to specific JSONDecodeError, TypeError, and Exception handlers with clear logs is spot-on—makes tracking down issues so much easier. I threw a bunch of test cases at it (good JSON, mangled JSON, None, empty strings, numbers), and it holds up perfectly—no bugs I could spot. I’ve got a small tweak to contribute for the PR—swapping print() for logging, capping the response in logs for safety, and tidying the docstring. Here’s what I’m suggesting: import json logger = logging.getLogger(name) def parse_hedge_fund_response(response):
This keeps your core fix, Yashar, but adds a proper logger for production, limits logged response to 50 chars to avoid leaks, and sharpens the docs. Virattt, this should make it more robust—any thoughts on including it? Yashar, happy to team up on the PR—could toss this in with a quick test (like None or bad JSON) to seal the deal. Great catch again—let me know how I can help get this over the line! Looking forward to cleaning this up together! |
The function parse_hedge_fund_response(response) currently has a broad except: clause that catches all exceptions, including those unrelated to JSON parsing. This can lead to:
Current Implementation of the function:
Proposed Fix:
Expected Improvement:
Narrows down on classifying variety of errors providing more information into the issue.
The text was updated successfully, but these errors were encountered: