From 542ad92bf7089903520a8d3c7ce14b1ea99e80d7 Mon Sep 17 00:00:00 2001 From: tycho garen Date: Thu, 21 Oct 2021 08:53:40 -0400 Subject: [PATCH] don't wait for light clients --- test/e2e/runner/start.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test/e2e/runner/start.go b/test/e2e/runner/start.go index d15020cf9..a0b64c2e7 100644 --- a/test/e2e/runner/start.go +++ b/test/e2e/runner/start.go @@ -110,6 +110,13 @@ func Start(ctx context.Context, testnet *e2e.Testnet) error { return fmt.Errorf("starting node %q: %w", node.Name, err) } + if node.Mode == e2e.ModeLight { + logger.Info(fmt.Sprintf("Light node %q up on http://127.0.0.1:%v", + node.Name, node.ProxyPort, status.SyncInfo.LatestBlockHeight)) + + continue + } + wctx, wcancel := context.WithTimeout(ctx, 8*time.Minute) status, err := waitForNode(wctx, node, node.StartAt) if err != nil {