File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
66 abcicli "github.com/tendermint/tendermint/abci/client"
77 cmtlog "github.com/tendermint/tendermint/libs/log"
8- cmtos "github.com/tendermint/tendermint/libs/os"
98 "github.com/tendermint/tendermint/libs/service"
109)
1110
@@ -129,10 +128,11 @@ func (app *multiAppConn) killTMOnClientError() {
129128 logger .Error (
130129 fmt .Sprintf ("%s connection terminated. Did the application crash? Please restart CometBFT" , conn ),
131130 "err" , err )
132- killErr := cmtos .Kill ()
133- if killErr != nil {
134- logger .Error ("Failed to kill this process - please do so manually" , "err" , killErr )
135- }
131+ // Do not kill tendermint process to enable KSYNC to continue running during upgrades
132+ //killErr := cmtos.Kill()
133+ //if killErr != nil {
134+ // logger.Error("Failed to kill this process - please do so manually", "err", killErr)
135+ //}
136136 }
137137
138138 select {
You can’t perform that action at this time.
0 commit comments