Browse Source

Add missing param to NewHead call in test. (#6725)

Signed-off-by: Callum Styan <callumstyan@gmail.com>
pull/6730/head
Callum Styan 5 years ago committed by GitHub
parent
commit
83601202d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tsdb/head_test.go

2
tsdb/head_test.go

@ -1276,7 +1276,7 @@ func TestAddDuplicateLabelName(t *testing.T) {
wlog, err := wal.NewSize(nil, nil, dir, 32768, false)
testutil.Ok(t, err)
h, err := NewHead(nil, nil, wlog, 1000)
h, err := NewHead(nil, nil, wlog, 1000, DefaultStripeSize)
testutil.Ok(t, err)
defer h.Close()

Loading…
Cancel
Save