mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-13 01:00:12 +00:00
feat(bot): don't send internal error messages for some errors that should be on sentry
This commit is contained in:
parent
026a822c74
commit
2602763e25
2 changed files with 13 additions and 1 deletions
|
|
@ -57,6 +57,13 @@ public static class MiscUtils
|
|||
// HTTP/2 streams are complicated and break sometimes.
|
||||
if (e is HttpRequestException) return false;
|
||||
|
||||
// This may expanded at some point.
|
||||
return true;
|
||||
}
|
||||
|
||||
public static bool ShowToUser(this Exception e)
|
||||
{
|
||||
|
||||
// Ignore "Database is shutting down" error
|
||||
if (e is PostgresException pe && pe.SqlState == "57P03") return false;
|
||||
|
||||
|
|
@ -71,7 +78,10 @@ public static class MiscUtils
|
|||
if (e is NpgsqlException npe && npe.Message.Contains("The connection pool has been exhausted"))
|
||||
return false;
|
||||
|
||||
// This may expanded at some point.
|
||||
// ignore "Exception while reading from stream"
|
||||
if (e is NpgsqlException npe2 && npe2.Message.Contains("Exception while reading from stream"))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue