diff --git a/commands/pilosa-cruncher/cruncher.go b/commands/pilosa-cruncher/cruncher.go index 72af2a7e6..1ac215f62 100644 --- a/commands/pilosa-cruncher/cruncher.go +++ b/commands/pilosa-cruncher/cruncher.go @@ -28,4 +28,5 @@ func main() { } cruncher := cruncher.NewCruncher() cruncher.Run() + log.Println("STOP") } diff --git a/core/etcd.go b/core/etcd.go index b57033a18..0b6dd9804 100644 --- a/core/etcd.go +++ b/core/etcd.go @@ -105,13 +105,15 @@ func getLightestProcess(m map[string]int) (Pair, error) { } func (self *TopologyMapper) MakeFragments(db string, slice_int int) error { - frames_to_create := config.GetStringArrayDefault("supported_frames", []string{"b.n", "l.n", "t.t", "d"}) - for _, frame := range frames_to_create { - err := self.AllocateFragment(db, frame, slice_int) - if err != nil { - log.Println(err) + /* + frames_to_create := config.GetStringArrayDefault("supported_frames", []string{"b.n", "l.n", "t.t", "d"}) + for _, frame := range frames_to_create { + err := self.AllocateFragment(db, frame, slice_int) + if err != nil { + log.Println(err) + } } - } + */ return nil } diff --git a/core/service.go b/core/service.go index 565012be0..3e79f7256 100644 --- a/core/service.go +++ b/core/service.go @@ -127,6 +127,7 @@ func (service *Service) Run() { return } } + log.Println("Service stopping") } type Message interface {