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 e64f32e commit 656c38cCopy full SHA for 656c38c
shell/AIShell.Kernel/Shell.cs
@@ -689,7 +689,8 @@ internal async Task RunREPLAsync()
689
690
StringBuilder sb = null;
691
string message = ex.Message;
692
- string stackTrace = ex.StackTrace;
+ // Skip displaying call stack for "HTTP 429" (Too Many Requests) errors to reduce clutter.
693
+ string stackTrace = message.Contains("HTTP 429") ? null : ex.StackTrace;
694
695
while (ex.InnerException is { })
696
{
0 commit comments