Github user sureshanaparti commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/806#discussion_r39372846
  
    --- Diff: 
vmware-base/src/com/cloud/hypervisor/vmware/util/VmwareClient.java ---
    @@ -152,13 +152,26 @@ public void connect(String url, String userName, 
String password) throws Excepti
             @SuppressWarnings("unchecked")
             Map<String, List<String>> headers = (Map<String, 
List<String>>)((BindingProvider)vimPort).getResponseContext().get(MessageContext.HTTP_RESPONSE_HEADERS);
             List<String> cookies = headers.get("Set-cookie");
    +
    +        vimPort.login(serviceContent.getSessionManager(), userName, 
password, null);
    +
    +        if (cookies == null) {
    +            @SuppressWarnings("unchecked")
    --- End diff --
    
    to suppress the warnings for the unchecked cast from Object to 
Map<String,List<String>> on extracting the http response headers from the 
response context. This is also set on vmware sample programs.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to