Bug Fix: Slack Notification Not Sent When Ticket Marked as "Done" in Notion#3
Open
aliyamuqaddas wants to merge 3 commits into
Open
Bug Fix: Slack Notification Not Sent When Ticket Marked as "Done" in Notion#3aliyamuqaddas wants to merge 3 commits into
aliyamuqaddas wants to merge 3 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes an issue where marking a ticket as "Done" in Notion did not trigger the expected Slack notification. The problem was due to silent failures and missing validations in the Slack notification flow.
✅ Fixes
post_message/2inJumpTickets.External.Slackwas returningnilfor an empty channel ID, causing silent failures.DoneNotifiermodule lacked proper error handling and logging, making the issue hard to trace.TicketDoneControllerdid not report specific error reasons.🔧 Changes Made
Improved post_message/2:
Returns
{:error, :empty_channel_id}if the channel ID is empty.Validated Slack channel ID:
Ensures the channel ID is non-empty before sending messages.
Improved error handling in notify_ticket_done/3:
Now matches and logs specific error cases (e.g., empty channel ID, invalid URL).
Enhanced logging and error responses in controller:
Clearer error messages make debugging easier and improve reliability.
🧪 Testing
Manually verified the following scenarios: