Skip to content

Commit 494c01c

Browse files
committed
fix: do not kill tendermint process
1 parent 5856485 commit 494c01c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

proxy/multi_app_conn.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
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 {

0 commit comments

Comments
 (0)