-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: recent improvements not backport to v1.2.x (#1381)
* Problem: cosmovisor in test is out dated (#1380) new version cosmovisor support graceful shutdown Solution: - update cosmovisor - adapt the test case Update CHANGELOG.md Signed-off-by: yihuang <[email protected]> * Problem: rocksdb wal format sometimes not backward compatible (#1379) Solution: - flush the wal before quit the node, make the rocksdb upgrade smooth. Update CHANGELOG.md Signed-off-by: yihuang <[email protected]> fix flush Signed-off-by: yihuang <[email protected]> * Problem: upgrade test nix package is incorrect (#1384) --------- Signed-off-by: yihuang <[email protected]>
- Loading branch information
Showing
9 changed files
with
86 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ buildGoModule | ||
, fetchFromGitHub | ||
}: | ||
|
||
let | ||
version = "1.5.0"; | ||
cosmos-sdk = fetchFromGitHub { | ||
owner = "cosmos"; | ||
repo = "cosmos-sdk"; | ||
rev = "tools/cosmovisor/v${version}"; | ||
hash = "sha256-Ov8FGpDOcsqmFLT2s/ubjmTXj17sQjBWRAdxlJ6DNEY="; | ||
}; | ||
in | ||
buildGoModule rec { | ||
name = "cosmovisor"; | ||
version = "1.5.0"; | ||
src = cosmos-sdk + "/tools/cosmovisor"; | ||
subPackages = [ "./cmd/cosmovisor" ]; | ||
vendorHash = "sha256-IkPnnfkofn5w8Oa/uzGxgI1eb5RrJ9haNgj4mBXF+n8="; | ||
doCheck = false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters