Incorrect URL constructed in ServerMetadata
-------------------------------------------

                 Key: MOJO-1626
                 URL: http://jira.codehaus.org/browse/MOJO-1626
             Project: Mojo
          Issue Type: Bug
          Components: sonar
    Affects Versions: sonar-2.0-beta-2, sonar-1.0-beta-2
            Reporter: Evgeny Mandrikov


Instead of
{code}
String fullUrl = url + path;
HttpURLConnection conn = getConnection( fullUrl + path, "GET" );
{code}
should be
{code}
String fullUrl = url + path;
HttpURLConnection conn = getConnection( fullUrl, "GET" );
{code}
This bug exists in both versions 1.x and 2.x, but actually this doesn't affect 
execution of mojo, because such request somehow handled by Sonar ruby API.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to