Browse Source

removed some debug statements

batching_initial_approach
imw 5 years ago
parent
commit
88122f053f
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      batch/batch.go

+ 1
- 5
batch/batch.go

@ -44,20 +44,16 @@ func Add(p types.Packet) error {
if err != nil {
return err
}
currentBatchSize++
fmt.Println(currentBatchSize)
if currentBatchSize >= BatchSize {
fmt.Println("sending ready")
BatchSignal <- true
fmt.Println("sent ready")
}
fmt.Println("returning")
return nil
}
//create (return batch)
func Create() []byte {
fmt.Println("Creating batch")
DB, err = leveldb.OpenFile(DBPath, nil)
if err != nil {
panic(err)

Loading…
Cancel
Save