-
Notifications
You must be signed in to change notification settings - Fork 113
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
feat: add eventbus state check #578
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: jyjiangkai <jyjiangkai@163.com>
Signed-off-by: jyjiangkai <jyjiangkai@163.com>
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #578 +/- ##
==========================================
- Coverage 57.07% 54.57% -2.50%
==========================================
Files 190 211 +21
Lines 15191 16977 +1786
==========================================
+ Hits 8670 9266 +596
- Misses 5884 7001 +1117
- Partials 637 710 +73
... and 56 files with indirect coverage changes Continue to review full report in Codecov by Sentry.
|
@@ -41,7 +41,10 @@ func main() { | |||
if err != nil { | |||
panic("invalid id") | |||
} | |||
bus := c.Eventbus(ctx, api.WithName("quick-start"), api.WithID(eventbusID.Uint64())) | |||
bus, err := c.Eventbus(ctx, api.WithName("quick-start"), api.WithID(eventbusID.Uint64())) |
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.
bus, err := c.Eventbus(ctx, api.WithName("quick-start"), api.WithID(eventbusID.Uint64())) | |
bus, err := c.Eventbus(ctx, api.WithID(eventbusID.Uint64())) |
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.
modified
Signed-off-by: jyjiangkai <jyjiangkai@163.com>
Signed-off-by: jyjiangkai <jyjiangkai@163.com>
Signed-off-by: jyjiangkai <jyjiangkai@163.com>
What problem does this PR solve?
Issue Number: close #xxx
Problem Summary
What is changed and how does it work?
Check List
Tests