Skip to content

Commit

Permalink
fixed buig
Browse files Browse the repository at this point in the history
  • Loading branch information
harshil-goel committed Jul 16, 2024
1 parent 1b13810 commit ecc18d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ require (
github.com/Masterminds/semver/v3 v3.1.0
github.com/bits-and-blooms/bitset v1.2.0
github.com/blevesearch/bleve/v2 v2.3.10
github.com/chewxy/math32 v1.10.1
github.com/dgraph-io/badger/v4 v4.2.0
github.com/dgraph-io/dgo/v230 v230.0.2-0.20240314155021-7b8d289e37f3
github.com/dgraph-io/gqlgen v0.13.2
Expand Down Expand Up @@ -86,6 +85,7 @@ require (
github.com/blevesearch/snowballstem v0.9.0 // indirect
github.com/blevesearch/upsidedown_store_api v1.0.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/chewxy/math32 v1.10.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/docker/distribution v2.8.2+incompatible // indirect
github.com/docker/go-units v0.4.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions posting/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -773,8 +773,8 @@ func (r *rebuilder) RunWithoutTemp(ctx context.Context) error {
return err
}

res := make([]int, 3)
nn := make([]int, 3)
res := []int{0, 0, 0}
nn := []int{0, 0, 0}

// Temp stuff to analyse the tree
var edges [][]uint64
Expand Down

0 comments on commit ecc18d8

Please sign in to comment.