You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@bkiebdaj Everything was OK on org.apache.httpcomponents:httpclient:4.5.6, but now it is broken on org.apache.httpcomponents:httpclient:4.5.9 due to different implementation of org.apache.http.client.utils.URIBuilder class.
When creating new JiraClient with URI like
new JiraClient("http://localhost:1234", credentials)
final url contains null in path:
/null/rest/api/latest/issue/createmeta
But when I add '/' at the end of uri it works:
new JiraClient("http://localhost:1234/", credentials)
then
/rest/api/latest/issue/createmeta
The text was updated successfully, but these errors were encountered: