Remove forking logger (#825)

- no longer needed, the race conditions were fixed

Signed-off-by: Laurentiu Niculae <niculae.laurentiu1@gmail.com>
This commit is contained in:
LaurentiuNiculae
2022-09-29 23:28:39 +03:00
committed by GitHub
parent e0d808b196
commit 885f139e0e
3 changed files with 3 additions and 10 deletions
+1 -4
View File
@@ -614,9 +614,6 @@ func Run(ctx context.Context, cfg Config,
ticker := time.NewTicker(regCfg.PollInterval)
// fork a new zerolog child to avoid data race
tlogger := log.Logger{Logger: logger.Logger}
retryOptions := &retry.RetryOptions{}
if regCfg.MaxRetries != nil {
@@ -658,7 +655,7 @@ func Run(ctx context.Context, cfg Config,
continue
}
}
}(ctx, regCfg, tlogger)
}(ctx, regCfg, logger)
}
logger.Info().Msg("finished setting up sync")