fixed Internal server error when repositoryID is configured incorrectly#145
Merged
deepikaSingh2711 merged 10 commits intodevelopfrom Jul 8, 2025
Merged
fixed Internal server error when repositoryID is configured incorrectly#145deepikaSingh2711 merged 10 commits intodevelopfrom
deepikaSingh2711 merged 10 commits intodevelopfrom
Conversation
| const response = await axios.get(getRepoInfoUrl, config); | ||
| return response; | ||
| } catch (error) { | ||
| if(error.response?.status===404){ |
There was a problem hiding this comment.
Can we add one more check if error.respomse.staus ==500 then through error which is coming from DI
Collaborator
Author
There was a problem hiding this comment.
Added check to handle 500 Internal Server Error gracefully by rejecting the request with the error message from the response
added 2 commits
July 2, 2025 10:18
yashmeet29
reviewed
Jul 3, 2025
| const response = await axios.get(getRepoInfoUrl, config); | ||
| return response; | ||
| } catch (error) { | ||
| if(error.response?.status===404){ |
Member
There was a problem hiding this comment.
Please correct the indentation as if(error.response?.status === 404){
yashmeet29
approved these changes
Jul 3, 2025
Juergen-Goebl-msggroup
pushed a commit
to Andreas-Meindl-msggroup/sdm
that referenced
this pull request
Apr 14, 2026
fixed Internal server error when repositoryID is configured incorrectly
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.
Describe your changes
Updated error handling in the getRepositoryInfo method of the Node.js plugin.
Previously, if the repository was configured incorrectly (e.g., repo not found), the API would return a generic Internal Server Error
Before fix

After fix

After Fix in Multitenancy Application
Any documentation
Type of change
Please delete options that are not relevant.
Checklist before requesting a review
Upload Screenshots/lists of the scenarios tested