-
Notifications
You must be signed in to change notification settings - Fork 11.7k
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
[ISSUE #7115] Fix the response message NPE #7116
[ISSUE #7115] Fix the response message NPE #7116
Conversation
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.
LGTM
@dingshuangxi888 Plz merge the latest development branch to pass ci |
Codecov Report
@@ Coverage Diff @@
## develop #7116 +/- ##
==========================================
Coverage 42.13% 42.14%
+ Complexity 9258 9257 -1
==========================================
Files 1149 1149
Lines 82000 82000
Branches 10694 10695 +1
==========================================
+ Hits 34550 34558 +8
+ Misses 43100 43091 -9
- Partials 4350 4351 +1
... and 16 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
Which Issue(s) This PR Fixes
Fixes #7115
Brief Description
When a system exception occurs in gRPC, such as a NullPointerException (NPE), the Response returned to the client may have its message set to null, resulting in another NPE. In such cases, the client cannot receive the response.
How Did You Test This Change?