Skip to content

Commit

Permalink
Merge pull request #1824 from smithdh/chaninfo_chanid
Browse files Browse the repository at this point in the history
[XrdCl] Ensure URL::GetChannelId returns an Id which can be parsed again as a url
  • Loading branch information
simonmichal committed Nov 24, 2022
2 parents f641d54 + 05a4599 commit e1c9e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/XrdCl/XrdClURL.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit e1c9e1c

Please sign in to comment.