Skip to content
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

Problem: state streamers are not integrated #702

Merged
merged 15 commits into from
Sep 21, 2022
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
yihuang committed Sep 19, 2022
commit 393d580d98326eddbf51cfb9fec2153a22fce7be
4 changes: 3 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,9 @@ func New(
bApp.SetStreamingService(service)

wg := new(sync.WaitGroup)
service.Stream(wg)
if err := service.Stream(wg); err != nil {
panic(err)
}
}

app := &App{
Expand Down