From f272d764e9a65d2ffe18bb7ae00c46c0ef7e246b Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Sat, 3 Mar 2018 12:28:44 +0000 Subject: [PATCH] switch to stdlib context --- hystrix.go | 2 +- hystrix_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hystrix.go b/hystrix.go index 84fd1af..64a3f2a 100644 --- a/hystrix.go +++ b/hystrix.go @@ -4,7 +4,7 @@ import ( "github.com/afex/hystrix-go/hystrix" "github.com/micro/go-micro/client" - "golang.org/x/net/context" + "context" ) type clientWrapper struct { diff --git a/hystrix_test.go b/hystrix_test.go index a32bdd1..8ab0224 100644 --- a/hystrix_test.go +++ b/hystrix_test.go @@ -8,7 +8,7 @@ import ( "github.com/micro/go-micro/registry/mock" "github.com/micro/go-micro/selector" - "golang.org/x/net/context" + "context" ) func TestBreaker(t *testing.T) {