-
Notifications
You must be signed in to change notification settings - Fork 33
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
Improve callMethod logic #855
Improve callMethod logic #855
Conversation
if (runtime != null) { | ||
Set<Map.Entry<String, BObject>> services = registeredServices.entrySet(); | ||
for (Map.Entry<String, BObject> service : services) { | ||
runtime.callMethod(service.getValue(), ON_MESSAGE, new StrandMetadata(true, null), email); |
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.
We should check isolated logic here instead of passing true
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.
Fixed in 251aac9
4fc4e26
to
66edec9
Compare
66edec9
to
251aac9
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #855 +/- ##
============================================
- Coverage 80.90% 80.79% -0.11%
- Complexity 161 164 +3
============================================
Files 21 21
Lines 1021 1031 +10
Branches 166 167 +1
============================================
+ Hits 826 833 +7
- Misses 114 115 +1
- Partials 81 83 +2 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
|
Purpose
Examples
Checklist