From 6cdd901ec636a6a108fc18d18c828ea5a5e90c7e Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Sun, 10 Dec 2017 12:40:09 +0100 Subject: [PATCH] fix typo --- pkg/tsdb/postgres/postgres.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tsdb/postgres/postgres.go b/pkg/tsdb/postgres/postgres.go index d7bc42b3a11..067b173ad5a 100644 --- a/pkg/tsdb/postgres/postgres.go +++ b/pkg/tsdb/postgres/postgres.go @@ -204,7 +204,7 @@ func (e PostgresQueryEndpoint) transformToTimeSeries(query *tsdb.Query, rows *co fillValue := null.Float{} if fillMissing { fillInterval = query.Model.Get("fillInterval").MustFloat64() * 1000 - if query.Model.Get("fillNULL").MustBool(false) == false { + if query.Model.Get("fillNull").MustBool(false) == false { fillValue.Float64 = query.Model.Get("fillValue").MustFloat64() fillValue.Valid = true }