Michael Osipov created HTTPCLIENT-1508:
------------------------------------------
Summary: Default user agent should reflect the Java version used
and not compiled
Key: HTTPCLIENT-1508
URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1508
Project: HttpComponents HttpClient
Issue Type: Improvement
Components: HttpClient
Affects Versions: 4.3.3
Reporter: Michael Osipov
Currently, the dafault user agent looks like this:
{noformat}
DEFAULT_USER_AGENT = "Apache-HttpClient/" + release + " (java 1.5)"
{noformat}
This indicates that Java 1.5 is used but this is the compile target of HTTP
Client.
A better user agent would be:
{noformat}
DEFAULT_USER_AGENT = "Apache-HttpClient/" + release + " (Java " + javaVersion
")"
{noformat}
where {{javaVersion}} is the version where the client is currently running.
--
This message was sent by Atlassian JIRA
(v6.2#6252)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]