# HG changeset patch # User Sascha L. Teichmann # Date 1552486819 -3600 # Node ID a8ebc785823dac45b0e5c756189e82cc73074f2c # Parent be60888e7c43d8ca29d5bbe3bb09b3b9cd061a32 WFS download: Removed waiting for configuration in feature download. It slipped in when added WFS error handling. diff -r be60888e7c43 -r a8ebc785823d pkg/wfs/download.go --- a/pkg/wfs/download.go Wed Mar 13 13:18:27 2019 +0100 +++ b/pkg/wfs/download.go Wed Mar 13 15:20:19 2019 +0100 @@ -26,7 +26,6 @@ "strconv" "strings" - "gemma.intevation.de/gemma/pkg/config" "golang.org/x/net/html/charset" ) @@ -383,7 +382,6 @@ // DownloadURLs does the actual GetFeature requests downloads // and hands the resulting io.Readers over to the given handler. func DownloadURLs(urls []string, handler func(string, io.Reader) error) error { - config.WaitReady() for _, url := range urls { if err := downloadURL(url, handler); err != nil { return err