-
Notifications
You must be signed in to change notification settings - Fork 642
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#4095] Code Optimization and Interrupeted Exception handling.[EtcdCustomService] #4364
Conversation
@@ -68,6 +68,9 @@ public List<EventMeshServicePubTopicInfo> findEventMeshServicePubTopicInfos() th | |||
return eventMeshServicePubTopicInfoList; | |||
} | |||
} catch (Exception e) { | |||
if(e instanceof InterruptedException) { |
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.
I think it would be better to put it after the log message.
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.
ohk sure
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.
@himansh295 Please fix code style
Please resolve conflicts. |
Hi @himansh295 , the issue has been accomplished in #4752. Do you have any additional information to share? Feel free to share your latest insights with us. If you feel that your issue has been resolved, you are welcome to close it. We sincerely appreciate your contributions to Apache EventMesh. |
Fixes #4095 .
Motivation
Explain the content here.
Explain why you want to make the changes and what problem you're trying to solve.
Modifications
Describe the modifications you've done.
Documentation