From 05a459977a89583a3c47eee373361abf6a74bcc7 Mon Sep 17 00:00:00 2001 From: David Smith Date: Thu, 24 Nov 2022 10:33:43 +0100 Subject: [PATCH] [XrdCl] Ensure URL::GetChannelId returns an Id which can be parsed again as a url --- src/XrdCl/XrdClURL.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XrdCl/XrdClURL.cc b/src/XrdCl/XrdClURL.cc index df75e20a7f3..cb2987f5451 100644 --- a/src/XrdCl/XrdClURL.cc +++ b/src/XrdCl/XrdClURL.cc @@ -493,7 +493,7 @@ namespace XrdCl //------------------------------------------------------------------------ std::string URL::GetChannelId() const { - std::string ret = pProtocol + "://" + pHostId; + std::string ret = pProtocol + "://" + pHostId + "/"; bool hascgi = false; std::string keys[] = { "xrdcl.intent",