-
Notifications
You must be signed in to change notification settings - Fork 52
fix: Improve error message for invalid connection Id #1296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
fix: Improve error message for invalid connection Id #1296
Conversation
Signed-off-by: CodeWithAryanK <172922447+CodeWithAryanK@users.noreply.github.com>
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Hi @GHkrishna 👋 Just wanted to let you know that I’ve raised the PR for issue #1229 as discussed. Here’s the link to the PR: #1296 – fix: Improve error message for invalid connection Id Let me know if any changes are needed. Thanks again! 🙌 |
@@ -284,7 +284,7 @@ export const ResponseMessages = { | |||
basicMessage: 'Basic message sent successfully' | |||
}, | |||
error: { | |||
invalidConnectionId: 'Invalid format for connectionId', | |||
invalidConnectionId: 'Please provide a valid for c 8000 onnection Id', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
invalidConnectionId: 'Please provide a valid for connection Id', | |
invalidConnectionId: 'Please provide a valid connection Id', |
Thank you for the contribution @CodeWithAryanK Do you mind, having a look at the failing, signature verification: https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification |
This PR updates the error message shown when an invalid connection Id (e.g., a space) is provided.
Old: "Invalid format for connectionId"
New: "Please provide a valid connectionId"
This improves clarity and user guidance.