Skip to content

Commit

Permalink
Solution: use snappy v0.0.3 (#536)
Browse files Browse the repository at this point in the history
Solution: use snappy @ v0.0.3
this is the latest version
arm64 in apple m1 is fixed
  • Loading branch information
leejw51crypto authored May 7, 2021
1 parent a3ddb8f commit 39ecd2d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ replace github.com/cosmos/ledger-cosmos-go => github.com/crypto-com/ledger-cosmo
replace github.com/99designs/keyring => github.com/crypto-org-chain/keyring v1.1.6-gnome

replace github.com/dgrijalva/jwt-go => github.com/dgrijalva/jwt-go/v4 v4.0.0-preview1

replace github.com/golang/snappy => github.com/golang/snappy v0.0.3
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,8 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD
github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/protobuf v1.4.3 h1:JjCZWpVbqXDqFVmTfYWEVTMIYrL/NPdPSCHPJ0T/raM=
github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/golang/snappy v0.0.2 h1:aeE13tS0IiQgFjYdoL8qN3K1N2bXXtI6Vi51/y7BpMw=
github.com/golang/snappy v0.0.2/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/golang/snappy v0.0.3 h1:fHPg5GQYlCeLIPB9BZqMVR5nR9A+IM5zcgeTdjMYmLA=
github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
github.com/google/btree v1.0.0 h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=
github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/test_byzantine.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .utils import cluster_fixture

MAX_SLEEP_SEC = 300
MAX_SLEEP_SEC = 600


@pytest.fixture(scope="module")
Expand Down
4 changes: 2 additions & 2 deletions integration_tests/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def test_manual_upgrade(cosmovisor_cluster):
)

# wait for upgrade plan activated
wait_for_block(cluster, target_height)
wait_for_block(cluster, target_height, 600)
# wait a little bit
time.sleep(0.5)

Expand Down Expand Up @@ -247,7 +247,7 @@ def test_manual_upgrade(cosmovisor_cluster):
cluster.reload_supervisor()

# wait for it to generate new blocks
wait_for_block(cluster, target_height + 2)
wait_for_block(cluster, target_height + 2, 600)


@pytest.mark.slow
Expand Down

0 comments on commit 39ecd2d

Please sign in to comment.