From add83ef259cb33b904c817145e163ab9b9cf0b0b Mon Sep 17 00:00:00 2001 From: Nikhil Chandrappa Date: Mon, 16 Sep 2024 18:40:56 +0000 Subject: [PATCH] [#23947] Update callhome URL to use https Summary: Changing the callhome URL to use https. Test Plan: Manaul Test Reviewers: djiang Reviewed By: djiang Subscribers: yugabyted-dev Differential Revision: https://phorge.dev.yugabyte.com/D38089 --- bin/yugabyted | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/yugabyted b/bin/yugabyted index bd58bb306579..648a3dea0ce3 100755 --- a/bin/yugabyted +++ b/bin/yugabyted @@ -5633,7 +5633,7 @@ class ControlScript(object): def callhome(self): if self.configs.saved_data.get("callhome"): try: - url = "http://diagnostics.yugabyte.com" + url = "https://diagnostics.yugabyte.com" headers = { "Content-Type": "application/json", "User-Agent": "Mozilla",