refactor: reword upgrading.md and verify match with repo (backport #17262) (#17312)

Co-authored-by: Julien Robert <julien@rbrt.fr>
This commit is contained in:
mergify[bot]
2023-08-07 16:27:17 +00:00
committed by GitHub
co-authored by Julien Robert
parent 6861a06332
commit d9247a9b55
6 changed files with 42 additions and 56 deletions
+6 -3
View File
@@ -568,9 +568,12 @@ func registerABCIListenerPlugin(
exposeKeysStr := cast.ToStringSlice(appOpts.Get(keysKey))
exposedKeys := exposeStoreKeysSorted(exposeKeysStr, keys)
bApp.cms.AddListeners(exposedKeys)
bApp.SetStreamingService(abciListener)
bApp.stopNodeOnABCIListenerErr = stopNodeOnErr
bApp.abciListenersAsync = async
app.SetStreamingManager(
storetypes.StreamingManager{
ABCIListeners: []storetypes.ABCIListener{abciListener},
StopNodeOnErr: stopNodeOnErr,
},
)
}
```