in client/Apache.ShenYu.Client/Utils/UriUtils.cs [79:88]
public static string GetPathWithParams(Uri uri)
{
if (uri == null)
{
return string.Empty;
}
// string @params = string.IsNullOrEmpty(uri.PathAndQuery) ? "" : "?" + uri.PathAndQuery;
// return uri.AbsoluteUri + @params;
return uri.AbsoluteUri;
}