ref: ab692e73dea3ddfe979c88ee236cc394e47e82f1
parent: 7cdc244a72de4c08edc0008e37aec83d945dccdf
author: Bjørn Erik Pedersen <[email protected]>
date: Tue Apr 18 14:47:37 EDT 2017
hugolib: Log WARNING only on unknown /data files Fixes #3361
--- a/hugolib/datafiles_test.go
+++ b/hugolib/datafiles_test.go
@@ -98,15 +98,6 @@
}
-func TestDataDirUnknownFormat(t *testing.T) {
- t.Parallel()
-
- sources := []source.ByteSource{
- {Name: filepath.FromSlash("data/test.roml"), Content: []byte("boo")},
- }
- doTestDataDir(t, true, sources)
-}
-
func doTestDataDir(t *testing.T, expected interface{}, sources []source.ByteSource, configKeyValues ...interface{}) {
var (
cfg, fs = newTestCfg()
--- a/hugolib/site.go
+++ b/hugolib/site.go
@@ -841,7 +841,8 @@
data, err := s.readData(r)
if err != nil {
- return fmt.Errorf("Failed to read data from %s: %s", filepath.Join(r.Path(), r.LogicalName()), err)
+ s.Log.WARN.Printf("Failed to read data from %s: %s", filepath.Join(r.Path(), r.LogicalName()), err)
+ continue
}
if data == nil {