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 f97c7a9 commit d028825Copy full SHA for d028825
shell/AIShell.Kernel/Shell.cs
@@ -695,7 +695,8 @@ internal async Task RunREPLAsync()
695
696
StringBuilder sb = null;
697
string message = ex.Message;
698
- string stackTrace = ex.StackTrace;
+ // Skip displaying call stack for "HTTP 429" (Too Many Requests) errors to reduce clutter.
699
+ string stackTrace = message.Contains("HTTP 429") ? null : ex.StackTrace;
700
701
while (ex.InnerException is { })
702
{
0 commit comments