aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go9
1 files changed, 3 insertions, 6 deletions
diff --git a/main.go b/main.go
index 7a0749e..08640d1 100644
--- a/main.go
+++ b/main.go
@@ -5,7 +5,6 @@ import (
"fmt"
"net/url"
"os"
- "sync"
"github.com/Necoro/feed2imap-go/internal/feed"
"github.com/Necoro/feed2imap-go/internal/imap"
@@ -18,9 +17,7 @@ var cacheFile = flag.String("c", "feed.cache", "cache file")
var verbose = flag.Bool("v", false, "enable verbose output")
var debug = flag.Bool("d", false, "enable debug output")
-func processFeed(feed *feed.Feed, cfg *config.Config, client *imap.Client, wg *sync.WaitGroup) {
- defer wg.Done()
-
+func processFeed(feed *feed.Feed, cfg *config.Config, client *imap.Client) {
mails, err := feed.ToMails(cfg)
if err != nil {
log.Errorf("Processing items of feed %s: %s", feed.Name, err)
@@ -99,8 +96,8 @@ func run() error {
defer c.Disconnect()
- state.ForeachGo(func(f *feed.Feed, wg *sync.WaitGroup) {
- processFeed(f, cfg, c, wg)
+ state.ForeachGo(func(f *feed.Feed) {
+ processFeed(f, cfg, c)
})
if err = state.StoreCache(*cacheFile); err != nil {
+0 2009-07-24First eix stuffRené 'Necoro' Neumann4-0/+133 2009-07-05Translation and stuffRené 'Necoro' Neumann3-348/+412 2009-07-05TypoRené 'Necoro' Neumann1-1/+1 2009-07-05Allow ':' in expression names. Thus removing the colon as an assignment operatorRené 'Necoro' Neumann2-6/+2 2009-07-05DocRené 'Necoro' Neumann1-1/+14 2009-07-05Install package_details.pyRené 'Necoro' Neumann1-1/+1 2009-07-05Sort plugins in the windowRené 'Necoro' Neumann2-13/+12 2009-07-05Port DependencyDetailRené 'Necoro' Neumann4-129/+118 2009-07-05Also port FilesDetailRené 'Necoro' Neumann3-43/+24 2009-07-05Also ported EbuildDetailRené 'Necoro' Neumann3-27/+14