mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-05 16:15:56 +00:00
fix rebase issues
This commit is contained in:
parent
c720ddc28e
commit
a03ecf92e9
2 changed files with 2 additions and 4 deletions
|
|
@ -6,8 +6,6 @@ import (
|
|||
"strconv"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"golang.org/x/sync/errgroup"
|
||||
)
|
||||
|
||||
// Benchmark is an interface to guide the creation of new pilosa benchmarks or
|
||||
|
|
|
|||
|
|
@ -386,8 +386,8 @@ func GenerateSetCommands(n int, rand *rand.Rand) []SetCommand {
|
|||
}
|
||||
|
||||
// ParseConfig parses s into a Config.
|
||||
func ParseConfig(s string) (main.Config, error) {
|
||||
var c main.Config
|
||||
func ParseConfig(s string) (pilosa.Config, error) {
|
||||
var c pilosa.Config
|
||||
_, err := toml.Decode(s, &c)
|
||||
return c, err
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue