Switch from hashicorp/go-msgpack to the original upstream ugorgi/go to fix a slew of race conditions
This commit is contained in:
parent
ff6d448886
commit
74d604e5a8
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue