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.
1 parent 6930282 commit 0ea8b1eCopy full SHA for 0ea8b1e
template_langgraph/internals/notifiers.py
@@ -81,7 +81,11 @@ def notify(self, text: str):
81
logger.error(
82
f"Failed to send Slack notification: {response.text}, actual status code: {response.status_code}"
83
)
84
- raise httpx.HTTPStatusError(f"Failed to send Slack notification: {response.json()}")
+ raise httpx.HTTPStatusError(
85
+ f"Failed to send Slack notification: {response.text}",
86
+ request=response.request,
87
+ response=response,
88
+ )
89
90
91
def get_notifier(settings: Settings = None) -> BaseNotifier:
0 commit comments