Skip to content

Commit

Permalink
Revert "Using forked Bolt v1.2.0"
Browse files Browse the repository at this point in the history
This reverts commit 60f42a8.
  • Loading branch information
schollz committed Jan 31, 2017
1 parent 60f42a8 commit bc17063
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion api.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"strings"
"time"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
"github.com/gin-gonic/gin"
)

Expand Down
2 changes: 1 addition & 1 deletion backup.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"os"
"path"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

func dumpFingerprints(group string) error {
Expand Down
2 changes: 1 addition & 1 deletion cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path"
"testing"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion db.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
"time"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

func groupExists(group string) bool {
Expand Down
2 changes: 1 addition & 1 deletion fingerprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"strings"
"time"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
"github.com/gin-gonic/gin"
)

Expand Down
2 changes: 1 addition & 1 deletion fingerprint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"testing"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion mqtt.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"strconv"
"strings"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
"github.com/gin-gonic/gin"

MQTT "github.com/schollz/org.eclipse.paho.mqtt.golang"
Expand Down
2 changes: 1 addition & 1 deletion parameters.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"strconv"
"strings"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

// PersistentParameters are not reloaded each time
Expand Down
2 changes: 1 addition & 1 deletion parameters_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"testing"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

func BenchmarkLoadParameters(b *testing.B) {
Expand Down
2 changes: 1 addition & 1 deletion posterior_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"path"
"testing"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

// BenchmarkCalculatePosteriors1 needs to have precomputed parameters for testdb (run Optimize after loading testdb.sh)
Expand Down
2 changes: 1 addition & 1 deletion priors.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"math"
"path"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

// PdfType dictates the width of gaussian smoothing
Expand Down
2 changes: 1 addition & 1 deletion priorsThreaded.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"path"
"runtime"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

// following this:https://play.golang.org/p/hK2h-irKyz
Expand Down
2 changes: 1 addition & 1 deletion priors_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path"
"testing"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion rf.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
"time"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

func RandomString(strlen int) string {
Expand Down
2 changes: 1 addition & 1 deletion svm.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"strings"
"time"

"github.com/schollz/bolt"
"github.com/boltdb/bolt"
)

// # sudo apt-get install g++
Expand Down

0 comments on commit bc17063

Please sign in to comment.