Skip to content

Commit

Permalink
Merge branch 'main' into fix/add-ibc-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani committed Dec 12, 2023
2 parents 4eb46c7 + 52c1d09 commit 328ee87
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
# Docs
*.md @salmad3 @toschdev @ilgooz
docs/* @salmad3 @toschdev @ilgooz
changelog.md @ilgooz @salmad3 @toschdev @jeronimoalbi @Pantani @julienrbrt @Ehsan-saradar
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Fixes

- [#3831](https://github.com/ignite/cli/pull/3831) Correct ignite app gRPC server stop memory issue
- [#3825](https://github.com/ignite/cli/pull/3825) Fix a minor Keplr type-checking bug in TS client
- [#3836](https://github.com/ignite/cli/pull/3836) Add missing IBC commands for scaffolded chain

Expand Down
8 changes: 7 additions & 1 deletion ignite/services/plugin/protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,13 @@ func (c client) startClientAPIServer(api ClientAPI) (uint32, func()) {
return srv
})

return brokerID, func() { srv.Stop() }
stop := func() {
if srv != nil {
srv.Stop()
}
}

return brokerID, stop
}

type server struct {
Expand Down

0 comments on commit 328ee87

Please sign in to comment.