Skip to content

Commit

Permalink
Switching to the pinned version of msgpack
Browse files Browse the repository at this point in the history
  • Loading branch information
armon committed Oct 18, 2014
1 parent ad445f5 commit ce4aa7b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion command/agent/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"fmt"
"github.com/hashicorp/logutils"
"github.com/hashicorp/serf/serf"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
"io"
"log"
"net"
Expand Down
2 changes: 1 addition & 1 deletion command/agent/rpc_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bufio"
"fmt"
"github.com/hashicorp/logutils"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
"log"
"net"
"sync"
Expand Down
2 changes: 1 addition & 1 deletion command/agent/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"runtime"
"time"

"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion consul/fsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/hashicorp/consul/consul/structs"
"github.com/hashicorp/raft"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
)

// consulFSM implements a finite state machine that is used
Expand Down
2 changes: 1 addition & 1 deletion consul/mdb_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package consul
import (
"bytes"
"github.com/armon/gomdb"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
"io/ioutil"
"os"
"reflect"
Expand Down
2 changes: 1 addition & 1 deletion consul/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

"github.com/hashicorp/yamux"
"github.com/inconshreveable/muxado"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
)

// msgpackHandle is a shared handle for encoding/decoding of RPC messages
Expand Down
2 changes: 1 addition & 1 deletion consul/rpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/consul/consul/structs"
"github.com/hashicorp/yamux"
"github.com/inconshreveable/muxado"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
"io"
"math/rand"
"net"
Expand Down
2 changes: 1 addition & 1 deletion consul/status_endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package consul

import (
"github.com/hashicorp/consul/testutil"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
"net"
"net/rpc"
"os"
Expand Down
2 changes: 1 addition & 1 deletion consul/structs/structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/hashicorp/consul/acl"
"github.com/ugorji/go/codec"
"github.com/hashicorp/go-msgpack/codec"
)

var (
Expand Down

0 comments on commit ce4aa7b

Please sign in to comment.