Skip to content

Commit fadb1be

Browse files
committed
Replaced cachestore, bumped version
1 parent f18ae18 commit fadb1be

7 files changed

Lines changed: 22 additions & 19 deletions

File tree

config/cachestore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package config
33
import (
44
"errors"
55

6-
"github.com/BuxOrg/bux/cachestore"
6+
"github.com/mrz1836/go-cachestore"
77
)
88

99
// Validate checks the configuration for specific rules

config/cachestore_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package config
33
import (
44
"testing"
55

6-
"github.com/BuxOrg/bux/cachestore"
6+
"github.com/mrz1836/go-cachestore"
77
"github.com/stretchr/testify/require"
88
)
99

config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"errors"
66
"time"
77

8-
"github.com/BuxOrg/bux/cachestore"
98
"github.com/BuxOrg/bux/datastore"
109
"github.com/BuxOrg/bux/taskmanager"
1110
validation "github.com/go-ozzo/ozzo-validation"
11+
"github.com/mrz1836/go-cachestore"
1212
"github.com/newrelic/go-agent/v3/newrelic"
1313
)
1414

@@ -27,7 +27,7 @@ const (
2727
EnvironmentStaging = "staging"
2828
EnvironmentTest = "test"
2929
HealthRequestPath = "health"
30-
Version = "v0.2.1"
30+
Version = "v0.2.2"
3131
)
3232

3333
// Local variables for configuration

config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/BuxOrg/bux/cachestore"
98
"github.com/BuxOrg/bux/datastore"
9+
"github.com/mrz1836/go-cachestore"
1010
"github.com/newrelic/go-agent/v3/newrelic"
1111
"github.com/stretchr/testify/assert"
1212
"github.com/stretchr/testify/require"

config/services.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import (
88
"time"
99

1010
"github.com/BuxOrg/bux"
11-
"github.com/BuxOrg/bux/cachestore"
1211
"github.com/BuxOrg/bux/chainstate"
1312
"github.com/BuxOrg/bux/datastore"
1413
"github.com/BuxOrg/bux/taskmanager"
1514
"github.com/BuxOrg/bux/utils"
1615
"github.com/go-redis/redis/v8"
16+
"github.com/mrz1836/go-cachestore"
1717
"github.com/mrz1836/go-logger"
1818
"github.com/newrelic/go-agent/v3/newrelic"
1919
)

go.mod

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.sum

Lines changed: 10 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)