fix rebase issues

This commit is contained in:
jaffee 2016-12-19 15:12:56 -06:00
parent c720ddc28e
commit a03ecf92e9
2 changed files with 2 additions and 4 deletions

View file

@ -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

View file

@ -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
}