You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1007 B
29 lines
1007 B
From 0e5f062ba33929bc592fff175a2cd9d043a32b23 Mon Sep 17 00:00:00 2001
|
|
Message-ID: <0e5f062ba33929bc592fff175a2cd9d043a32b23.1769699749.git.jdenemar@redhat.com>
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Mon, 26 Jan 2026 10:38:02 +0000
|
|
Subject: [PATCH] esx: Debug URL just before opening with curl
|
|
|
|
Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
|
|
(cherry picked from commit 38c952d89317f5b4bd23223f9a9d8be086ef7a40)
|
|
Resolves: https://issues.redhat.com/browse/RHEL-138300
|
|
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
|
|
---
|
|
src/esx/esx_vi.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/src/esx/esx_vi.c b/src/esx/esx_vi.c
|
|
index 3264afc13a..8d2ffb3f8f 100644
|
|
--- a/src/esx/esx_vi.c
|
|
+++ b/src/esx/esx_vi.c
|
|
@@ -231,6 +231,8 @@ esxVI_CURL_Perform(esxVI_CURL *curl, const char *url)
|
|
long responseCode = 0;
|
|
const char *redirectUrl = NULL;
|
|
|
|
+ VIR_DEBUG("URL: %s", url);
|
|
+
|
|
errorCode = curl_easy_perform(curl->handle);
|
|
|
|
if (errorCode != CURLE_OK) {
|
|
--
|
|
2.52.0
|
|
|