-
Notifications
You must be signed in to change notification settings - Fork 344
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
Production Release: January Week 2 #1814
Conversation
try: | ||
AbdmGateway().init(data["resp"]["requestId"]) | ||
except Exception as e: | ||
return Response({"error": str(e)}, status=status.HTTP_400_BAD_REQUEST) |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
{ | ||
"detail": "Failed to notify (health-information/notify)", | ||
"error": str(e), | ||
}, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
) | ||
except Exception as e: | ||
return Response( | ||
{"detail": "Failed to fetch modes", "error": str(e)}, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
) | ||
except Exception as e: | ||
return Response( | ||
{"detail": "Failed to fetch modes", "error": str(e)}, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
) | ||
except Exception as e: | ||
return Response( | ||
{"detail": "Failed to add care context", "error": str(e)}, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
) | ||
except Exception as e: | ||
return Response( | ||
{"detail": "Failed to send SMS", "error": str(e)}, |
Check warning
Code scanning / CodeQL
Information exposure through an exception Medium
Stack trace information
@khavinshankar Can you file an issue to log the stacktrace and not share it in the response? Whitelabel the response |
No description provided.