From d0a476d514b0a16ff6d5867a31985c4f9f70b552 Mon Sep 17 00:00:00 2001 From: Sander Pick Date: Sun, 16 Jun 2019 14:44:47 -0700 Subject: [PATCH] cluster: fix ugorji/go module issue Signed-off-by: Sander Pick --- go.mod | 2 +- test_compile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 529b561a..e41719ed 100644 --- a/go.mod +++ b/go.mod @@ -78,4 +78,4 @@ require ( gopkg.in/natefinch/lumberjack.v2 v2.0.0-20170531160350-a96e63847dc3 ) -replace github.com/ugorji/go v1.1.4 => github.com/ugorji/go/codec v0.0.0-20190320090025-2dc34c0b8780 +replace github.com/ugorji/go/codec => github.com/ugorji/go v1.1.2 diff --git a/test_compile b/test_compile index 1c1e59d1..4807a14a 100755 --- a/test_compile +++ b/test_compile @@ -30,6 +30,9 @@ go test -coverprofile=core.cover.out ./core # mobile go test -coverprofile=mobile.cover.out ./mobile +# cluster +go test -coverprofile=cluster.cover.out ./cluster + # gateway go test -coverprofile=gateway.cover.out ./gateway