Conversation
Codecov Report
@@ Coverage Diff @@
## develop #792 +/- ##
===========================================
- Coverage 59.89% 59.82% -0.07%
===========================================
Files 116 116
Lines 10748 10761 +13
===========================================
+ Hits 6437 6438 +1
- Misses 3730 3742 +12
Partials 581 581 |
|
Tests failed with: but this seems to be not related. I will take a look |
#792 (comment) ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x902469] goroutine 41 [running]: github.com/tendermint/tendermint/rpc/lib/client.callWgDoneOnResult(0xc4201ce3c0, 0xc42009f7a0, 0xc42019d870) /go/src/github.com/tendermint/tendermint/rpc/lib/client/ws_client_test.go:207 +0x1a9 created by github.com/tendermint/tendermint/rpc/lib/client.TestWSClientReconnectsAfterWriteFailure /go/src/github.com/tendermint/tendermint/rpc/lib/client/ws_client_test.go:100 +0x192 exit status 2 FAIL github.com/tendermint/tendermint/rpc/lib/client 2.339s ```
#792 (comment) ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x902469] goroutine 41 [running]: github.com/tendermint/tendermint/rpc/lib/client.callWgDoneOnResult(0xc4201ce3c0, 0xc42009f7a0, 0xc42019d870) /go/src/github.com/tendermint/tendermint/rpc/lib/client/ws_client_test.go:207 +0x1a9 created by github.com/tendermint/tendermint/rpc/lib/client.TestWSClientReconnectsAfterWriteFailure /go/src/github.com/tendermint/tendermint/rpc/lib/client/ws_client_test.go:100 +0x192 exit status 2 FAIL github.com/tendermint/tendermint/rpc/lib/client 2.339s ```
|
|
hmm, i ran |
|
The tests behave themselves very strange. Every time I am rebuilding this, they fail with a new error. |
03fc4e5 to
2dd47ea
Compare
config/config.go
Outdated
| func DefaultConsensusConfig() *ConsensusConfig { | ||
| return &ConsensusConfig{ | ||
| WalPath: "data/cs.wal/wal", | ||
| WalPath: filepath.Join(defaultDataDir, "cs.wal/wal"), |
There was a problem hiding this comment.
filepath.Join(defaultDataDir, "cs.wal", "wal")
config/toml.go
Outdated
| filter_peers = {{ .BaseConfig.FilterPeers }} | ||
|
|
||
| # What indexer to use for transactions | ||
| tx_index = "{{ .BaseConfig.TxIndex }}" |
There was a problem hiding this comment.
this moved to its own section [tx_index]
docs/specification/configuration.rst
Outdated
| filter_peers = false | ||
|
|
||
| # What indexer to use for transactions | ||
| tx_index = "kv" |
|
|
also, dockerfile needs to be updated here |
|
|
on it |
| ``$TMHOME/config/config.toml``. Some of these parameters can be overridden by | ||
| command-line flags. For most users, the options in the ``##### main | ||
| base configuration options #####`` are intended to be modified while | ||
| config options further below are intended for advance power users. |
There was a problem hiding this comment.
not quite true. theres stuff like p2p.seeds that the average user should be manipualting
|
currently hangs in the CI |
config: test the default file docs: spiff up config config: minor fixes & comments config: simplify test config; use a seperate config directory, #556 config: update docs & parameterize file paths config: PR comments config: use the default object fix a rebase error
|
narrowed down the test failure when rebasing this branch on the |
|
same error when running locally |
|
boom: fixed with latest commit https://ci.interblock.io/job/05.Test.Tendermint.FeatureBranches.p2p/100/console |
…0.34.x chore: pull latest v0.34.x
* Unsafe int cast in `kill` command * Revert "Unsafe int cast in `kill` command" This reverts commit bbd649bd372ca90f83dea7b424d67dafbd9eb541. * Changed strategy (cherry picked from commit 03c5e77) Co-authored-by: Sergio Mena <sergio@informal.systems>
most of #628
refs: #709, #733