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.
account_inactive
1 parent fcaec8a commit 0d1bae7Copy full SHA for 0d1bae7
apps/webapp/app/v3/services/alerts/deliverAlert.server.ts
@@ -991,6 +991,15 @@ export class DeliverAlertService extends BaseService {
991
throw new SkipRetryError("Slack invalid blocks");
992
}
993
994
+ if (error.data.error === "account_inactive") {
995
+ logger.info("[DeliverAlert] Slack account inactive, skipping retry", {
996
+ error,
997
+ message,
998
+ });
999
+
1000
+ throw new SkipRetryError("Slack account inactive");
1001
+ }
1002
1003
throw new Error("Slack platform error");
1004
1005
0 commit comments