Switch from hashicorp/go-msgpack to the original upstream ugorgi/go to fix a slew of race conditions

This commit is contained in:
Chris Bednarski 2015-10-12 13:50:24 -07:00
parent ff6d448886
commit 74d604e5a8
2 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
package rpc
import (
"github.com/hashicorp/go-msgpack/codec"
"github.com/mitchellh/packer/packer"
"io"
"log"
"net/rpc"
"github.com/mitchellh/packer/packer"
"github.com/ugorji/go/codec"
)
// Client is the client end that communicates with a Packer RPC server.

View File

@ -6,8 +6,8 @@ import (
"net/rpc"
"sync/atomic"
"github.com/hashicorp/go-msgpack/codec"
"github.com/mitchellh/packer/packer"
"github.com/ugorji/go/codec"
)
var endpointId uint64