Merge pull request #2824 from mitchellh/b-ugorji

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 14:16:41 -07:00
commit 6e75a49f89
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