Commit ccfb3119 authored by protolambda's avatar protolambda

op-e2e: stop node, but drop error, if any

parent 2c3801cd
...@@ -281,7 +281,7 @@ func (sys *System) Close() { ...@@ -281,7 +281,7 @@ func (sys *System) Close() {
postCancel() // immediate shutdown, no allowance for idling postCancel() // immediate shutdown, no allowance for idling
for _, node := range sys.RollupNodes { for _, node := range sys.RollupNodes {
node.Stop(postCtx) _ = node.Stop(postCtx)
} }
for _, ei := range sys.EthInstances { for _, ei := range sys.EthInstances {
ei.Close() ei.Close()
...@@ -339,7 +339,7 @@ func (cfg SystemConfig) Start(t *testing.T, _opts ...SystemConfigOption) (*Syste ...@@ -339,7 +339,7 @@ func (cfg SystemConfig) Start(t *testing.T, _opts ...SystemConfigOption) (*Syste
postCtx, postCancel := context.WithCancel(context.Background()) postCtx, postCancel := context.WithCancel(context.Background())
postCancel() // immediate shutdown, no allowance for idling postCancel() // immediate shutdown, no allowance for idling
for _, node := range sys.RollupNodes { for _, node := range sys.RollupNodes {
node.Stop(postCtx) _ = node.Stop(postCtx)
} }
for _, ei := range sys.EthInstances { for _, ei := range sys.EthInstances {
ei.Close() ei.Close()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment