From b1c179be856043113eb51895f79f8a1d740c4a84 Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Wed, 16 Jun 2021 17:18:32 +0200 Subject: [PATCH] Fix main build (#8948) Was broken after the merge of #8824 Signed-off-by: Julien Pivotto --- tsdb/db_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/db_test.go b/tsdb/db_test.go index 6d977d77dc..ddd44f2c78 100644 --- a/tsdb/db_test.go +++ b/tsdb/db_test.go @@ -3173,7 +3173,7 @@ func TestLockfileMetric(t *testing.T) { opts.NoLockfile = c.lockFileDisabled // Create the DB, this should create a lockfile and the metrics - db, err := Open(tmpdir, nil, nil, opts) + db, err := Open(tmpdir, nil, nil, opts, nil) require.NoError(t, err) require.Equal(t, float64(c.expectedValue), prom_testutil.ToFloat64(db.metrics.lockfileCreatedCleanly))