From 862634a34d3604ed1aa712ab7b25eb4737b02f4c Mon Sep 17 00:00:00 2001
From: josh <josh@elixxir.io>
Date: Wed, 18 Aug 2021 11:31:31 -0700
Subject: [PATCH] Disable auth for UDB host

---
 ud/manager.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ud/manager.go b/ud/manager.go
index 201f1e22f..9342419bd 100644
--- a/ud/manager.go
+++ b/ud/manager.go
@@ -94,6 +94,7 @@ func NewManager(client *api.Client, single *single.Manager) (*Manager, error) {
 	hp.KaClientOpts.Time = time.Duration(math.MaxInt64)
 	hp.MaxRetries = 3
 	hp.SendTimeout = 3 * time.Second
+	hp.AuthEnabled = false
 	m.host, err = m.comms.AddHost(&id.UDB, def.UDB.Address, []byte(def.UDB.Cert), hp)
 	if err != nil {
 		return nil, errors.WithMessage(err, "User Discovery host object could "+
-- 
GitLab