Skip to content

Commit

Permalink
Update import paths for memcached client
Browse files Browse the repository at this point in the history
  • Loading branch information
manik committed Apr 14, 2014
1 parent ac173b2 commit d40d47f
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions client.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ import (
"sync"
"time"

"github.com/dustin/gomemcached"
"github.com/dustin/gomemcached/client"
"github.com/couchbase/gomemcached"
"github.com/couchbase/gomemcached/client"
)

// Maximum number of times to retry a chunk of a bulk get on error.
Expand Down
2 changes: 1 addition & 1 deletion conn_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"time"

"github.com/dustin/gomemcached/client"
"github.com/couchbase/gomemcached/client"
)

var errClosedPool = errors.New("the pool is closed")
Expand Down
4 changes: 2 additions & 2 deletions conn_pool_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"
"time"

"github.com/dustin/gomemcached"
"github.com/dustin/gomemcached/client"
"github.com/couchbase/gomemcached"
"github.com/couchbase/gomemcached/client"
)

type testT struct {
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_tap/hello_tap.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"log"

"github.com/couchbase/gomemcached/client"
"github.com/couchbaselabs/go-couchbase"
"github.com/dustin/gomemcached/client"
)

var poolName = flag.String("pool", "default", "Pool name")
Expand Down
2 changes: 1 addition & 1 deletion tap.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"log"
"time"

"github.com/dustin/gomemcached/client"
"github.com/couchbase/gomemcached/client"
)

const initialRetryInterval = 1 * time.Second
Expand Down
4 changes: 2 additions & 2 deletions upr.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ package couchbase
import (
"encoding/binary"
"fmt"
mcd "github.com/dustin/gomemcached"
mc "github.com/dustin/gomemcached/client"
mcd "github.com/couchbase/gomemcached"
mc "github.com/couchbase/gomemcached/client"
"log"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion uprtrans.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package couchbase
import (
"encoding/binary"
"fmt"
mcd "github.com/dustin/gomemcached"
mcd "github.com/couchbase/gomemcached"
)

const opaqueOpen = 0xBEAF0001
Expand Down
2 changes: 1 addition & 1 deletion uprtrans_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package couchbase
import (
"encoding/binary"
"fmt"
mcd "github.com/dustin/gomemcached"
mcd "github.com/couchbase/gomemcached"
"testing"
)

Expand Down

0 comments on commit d40d47f

Please sign in to comment.