From afd1f9f50ff72b257228b34076f4e9e2eceb3ede Mon Sep 17 00:00:00 2001 From: Patrick Moore Date: Fri, 26 Apr 2019 10:40:10 -0700 Subject: [PATCH] Update consul/watch import The watch package was moved from github.com/hashicorp/consul/watch to github.com/hashicorp/consul/api/watch to live in the API module. Per: https://github.com/hashicorp/consul/commit/6c885d383a7f303cc6c625108d3e7fc1a35d715d --- registry/consul/watcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/consul/watcher.go b/registry/consul/watcher.go index 60957bb1..a3d894a7 100644 --- a/registry/consul/watcher.go +++ b/registry/consul/watcher.go @@ -5,7 +5,7 @@ import ( "sync" "github.com/hashicorp/consul/api" - "github.com/hashicorp/consul/watch" + "github.com/hashicorp/consul/api/watch" "github.com/micro/go-micro/registry" )