From eef0b4038cfe693bdeb32d4020f7b845c0db6817 Mon Sep 17 00:00:00 2001
From: jbhusson <jonah@elixxir.io>
Date: Thu, 5 Jan 2023 13:39:34 -0500
Subject: [PATCH] change to post

---
 connect/webConn.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/connect/webConn.go b/connect/webConn.go
index 1f60905..73629ba 100644
--- a/connect/webConn.go
+++ b/connect/webConn.go
@@ -205,7 +205,7 @@ func (wc *webConn) isOnlineHelper(addr string, pingTimeout time.Duration) (time.
 		Timeout:   pingTimeout,
 	}
 	target := "https://" + addr + "/mixmessages.Gateway/RequestTlsCert"
-	req, err := http.NewRequest("GET", target, nil)
+	req, err := http.NewRequest("POST", target, nil)
 	if err != nil {
 		jww.WARN.Printf("Failed to initiate request: %+v", err)
 		return time.Since(start), false
-- 
GitLab