We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be589d0 + 45e4aa7 commit c1910edCopy full SHA for c1910ed
app/settings.py
@@ -119,7 +119,8 @@ def test_connection():
119
120
except Exception as e:
121
print(f"Test connection error: {str(e)}")
122
- return jsonify({'error': str(e), 'success': False}), 200
+ print(traceback.format_exc())
123
+ return jsonify({'error': 'An internal error has occurred.', 'success': False}), 200
124
125
# Debug route to check available routes
126
@settings_bp.route('/api/debug-routes', methods=['GET'])
0 commit comments