Browse Source

e2e: reduce log noise (#7004)

pull/7009/head
Sam Kleinman 3 years ago
committed by GitHub
parent
commit
b879f71e8e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      test/e2e/runner/rpc.go

+ 3
- 3
test/e2e/runner/rpc.go View File

@ -171,18 +171,18 @@ func waitForNode(ctx context.Context, node *e2e.Node, height int64) (*rpctypes.R
return nil, err
case err == nil && status.SyncInfo.LatestBlockHeight >= height:
return status, nil
case counter%100 == 0:
case counter%500 == 0:
switch {
case err != nil:
lastFailed = true
logger.Error("node not yet ready",
"iter", counter,
"node", node.Name,
"err", err,
"target", height,
"err", err,
)
case status != nil:
logger.Error("node not yet ready",
logger.Info("node not yet ready",
"iter", counter,
"node", node.Name,
"height", status.SyncInfo.LatestBlockHeight,


Loading…
Cancel
Save