Warn on proxy hash mismatch, not fail

This commit is contained in:
Jae Kwon
2016-03-23 20:22:45 -07:00
parent 8183e3201b
commit c3980cb165
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ type remoteAppConn struct {
}
func NewRemoteAppConn(addr string) (*remoteAppConn, error) {
client, err := tmspcli.NewClient(addr)
client, err := tmspcli.NewClient(addr, false)
if err != nil {
return nil, err
}