tempo-testnet: fix init command syntax to resume sync #42
Reference in New Issue
Block a user
Delete Branch "issue-1467"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Tempo-testnet-reth nodes on de-32 were stuck in error state due to buggy init command. The validator key check uses
&&chaining which exits 1 when the key already exists, blocking node startup even though data is intact (337G on-disk).The Fix
In both
tempo/reth/tempo-testnet-reth-{pruned,archive}-trace.yml, replaced the buggy:With the correct idempotent gate (matching mainnet/moderato):
This allows init to exit 0 when the key already exists, letting the node resume sync.
Verification
issue-1467./update.shverify: clean (no regressions on live configs)Asset commit:
671f293771a68290cbbd7f6e514875c4482ba4d2(vibe-node issue #1467)