From d6021a04ca6dc531cc34b80305eaa70da938f1f1 Mon Sep 17 00:00:00 2001 From: manisha kumari Date: Mon, 28 Oct 2024 12:34:02 +0530 Subject: [PATCH] etcd version update to 3.5.15 Signed-off-by: manisha kumari --- backend/etcd/etcd.go | 1 - go.mod | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/etcd/etcd.go b/backend/etcd/etcd.go index 065878039..694d2b198 100644 --- a/backend/etcd/etcd.go +++ b/backend/etcd/etcd.go @@ -374,7 +374,6 @@ func (e *Etcd) NewEmbeddedClientWithContext(ctx context.Context) *clientv3.Clien lc := adapter.LeaseServerToLeaseClient(v3rpc.NewQuotaLeaseServer(e.etcd.Server)) c.Lease = clientv3.NewLeaseFromLeaseClient(lc, c, time.Second) -:: wc := adapter.WatchServerToWatchClient(v3rpc.NewWatchServer(e.etcd.Server)) c.Watcher = &watchWrapper{clientv3.NewWatchFromWatchClient(wc, c)} diff --git a/go.mod b/go.mod index c57bdb9eb..74a5d7463 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/sensu/sensu-go -go 1.22 +go 1.21.11 require ( github.com/AlecAivazis/survey/v2 v2.2.14