fix wrong pkg (#239)

This commit is contained in:
Young Bu Park 2020-02-28 16:32:24 -08:00 committed by GitHub
parent ee97c3c56a
commit 3f3100fc22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import (
"fmt" "fmt"
"github.com/dapr/components-contrib/state" "github.com/dapr/components-contrib/state"
"github.com/nats-io/gnatsd/logger" "github.com/dapr/dapr/pkg/logger"
"encoding/json" "encoding/json"
"strconv" "strconv"
@ -41,7 +41,7 @@ type Aerospike struct {
} }
// NewAerospikeStateStore returns a new Aerospike state store // NewAerospikeStateStore returns a new Aerospike state store
func NewAerospikeStateStore(logger logger.Logger) *Aerospike { func NewAerospikeStateStore(logger logger.Logger) state.Store {
return &Aerospike{ return &Aerospike{
json: jsoniter.ConfigFastest, json: jsoniter.ConfigFastest,
logger: logger, logger: logger,