Skip to content

Commit

Permalink
Reduce max slack message length (#8456)
Browse files Browse the repository at this point in the history
  • Loading branch information
flvndvd authored Nov 5, 2024
1 parent 78fd416 commit a0e74bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion connectors/src/connectors/slack/chat/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { makeDustAppUrl } from "@connectors/connectors/slack/chat/utils";
* We adopt a conservative approach by setting a lower threshold
* to accommodate ellipses and ensure buffer space.
*/
export const MAX_SLACK_MESSAGE_LENGTH = 2950;
export const MAX_SLACK_MESSAGE_LENGTH = 2500;

export const DUST_URL = "https://dust.tt/home";
export const SLACK_HELP_URL = "https://docs.dust.tt/docs/slack";
Expand Down

0 comments on commit a0e74bb

Please sign in to comment.