Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions execution/evm/docker/docker-compose-full-node.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -8,9 +8,9 @@ services:
- ./jwttoken:/jwt
healthcheck:
test: ["CMD", "test", "-f", "/jwt/jwt.hex"]
interval: 5s
timeout: 5s
retries: 3
interval: 2s
timeout: 2s
retries: 2
command: >
/bin/sh -c "mkdir -p /jwt &&
if [ ! -f /jwt/jwt.hex ]; then
Expand All@@ -35,6 +35,8 @@ services:
- ./chain:/root/chain:ro
- ./jwttoken:/root/jwt:ro
- logs-full-node:/root/logs
environment:
- RUST_LOG=warn,lumen_rollkit=info
entrypoint: /bin/sh -c
command:
- |
Expand Down
11 changes: 5 additions & 6 deletions execution/evm/docker/docker-compose.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -8,9 +8,9 @@ services:
- ./jwttoken:/jwt
healthcheck:
test: ["CMD", "test", "-f", "/jwt/jwt.hex"]
interval: 5s
timeout: 5s
retries: 3
interval: 2s
timeout: 2s
retries: 2
command: >
/bin/sh -c "mkdir -p /jwt &&
if [ ! -f /jwt/jwt.hex ]; then
Expand All@@ -35,9 +35,8 @@ services:
- ./chain:/root/chain:ro
- ./jwttoken:/root/jwt:ro
- logs:/root/logs
# environment:
# - RUST_LOG=info,lumen=debug,lumen_node=debug,lumen_rollkit=debug
# - RUST_BACKTRACE=1
environment:
- RUST_LOG=warn,lumen_rollkit=info
entrypoint: /bin/sh -c
command:
- |
Expand Down
12 changes: 0 additions & 12 deletions test/e2e/evm_full_node_e2e_test.go
Original file line numberDiff line numberDiff line change
Expand Up@@ -19,8 +19,6 @@
// 4. TestEvmSequencerFullNodeRestartE2E - Distributed restart and recovery testing
// - StandardRestart: Normal start -> Normal restart
// - LazyModeRestart: Normal start -> Lazy restart
// - LazyToStandardRestart: Lazy start -> Normal restart
// - LazyToLazyRestart: Lazy start -> Lazy restart
package e2e

import (
Expand DownExpand Up@@ -902,8 +900,6 @@ func restartSequencerAndFullNode(t *testing.T, sut *SystemUnderTest, sequencerHo
// Sub-tests:
// 1. StandardRestart: Normal start -> Normal restart
// 2. LazyModeRestart: Normal start -> Lazy restart
// 3. LazyToStandardRestart: Lazy start -> Normal restart
// 4. LazyToLazyRestart: Lazy start -> Lazy restart
//
// Test Flow:
// 1. Sets up Local DA layer, sequencer, and full node with P2P connections (in specified initial mode)
Expand DownExpand Up@@ -948,14 +944,6 @@ func TestEvmSequencerFullNodeRestartE2E(t *testing.T) {
t.Run("LazyModeRestart", func(t *testing.T) {
testSequencerFullNodeRestart(t, false, true) // normal -> lazy
})

t.Run("LazyToStandardRestart", func(t *testing.T) {
testSequencerFullNodeRestart(t, true, false) // lazy -> normal
})

t.Run("LazyToLazyRestart", func(t *testing.T) {
testSequencerFullNodeRestart(t, true, true) // lazy -> lazy
})
}

// testSequencerFullNodeRestart contains the shared test logic for all restart test combinations.
Expand Down
Loading
Loading