From d5111ae25d94cd7648abd9767ba8e52dda831069 Mon Sep 17 00:00:00 2001 From: pablomendezroyo Date: Thu, 5 Dec 2024 12:42:04 +0100 Subject: [PATCH] remove new line --- cmd/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/main.go b/cmd/main.go index 3275300..aa80058 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -100,10 +100,9 @@ func main() { pendingHashesLoaderService := services.NewPendingHashesLoader(storageAdapter, ipfsAdapter) relaysCheckerService := services.NewRelayCronService(relaysAllowedAdapter, relaysUsedAdapter, notifierAdapter) - // Relays + // Start domain services go relaysCheckerService.StartRelayMonitoringCron(ctx, 5*time.Minute, &wg) - // Start domain services distributionLogUpdatedExecutionComplete := make(chan struct{}) go distributionLogUpdatedScannerService.ScanDistributionLogUpdatedEventsCron(ctx, 384*time.Second, &wg, distributionLogUpdatedExecutionComplete) go pendingHashesLoaderService.LoadPendingHashesCron(ctx, 3*time.Hour, &wg, distributionLogUpdatedExecutionComplete)