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

This commit is contained in:
Julien Robert
2023-08-07 15:53:45 +00:00
committed by GitHub
parent 6f29897bf0
commit bdb7387fa9
7 changed files with 49 additions and 63 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,
},
)
}
```