Update many-small-chains-and-one-big-chain DAG to not fail merge depth limit (#2072)

Co-authored-by: Michael Sutton <mikisiton2@gmail.com>
This commit is contained in:
Ori Newman 2022-05-31 16:13:43 +03:00 committed by GitHub
parent 7eb5085f6b
commit 5cea285960
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ func StartCmd(name string, args ...string) (*exec.Cmd, error) {
cmd := exec.Command(args[0], args[1:]...)
cmd.Stdout = NewLogWriter(log, logger.LevelTrace, fmt.Sprintf("%s-STDOUT", name))
cmd.Stderr = NewLogWriter(log, logger.LevelWarn, fmt.Sprintf("%s-STDERR", name))
log.Debugf("Starting command %s: %s", name, cmd)
log.Infof("Starting command %s: %s", name, cmd)
err := cmd.Start()
if err != nil {
return nil, errors.WithStack(err)