amalakar opened a new pull request #5020: Make port number optional in superset 
for druid
URL: https://github.com/apache/incubator-superset/pull/5020
 
 
   It appears that urllib throws error with ssl if port number is provided
   
   ```
       url = "https://example.com:443/druid/v2";
   
       req = urllib.request.Request(url, druid_query_str, headers)
       res = urllib.request.urlopen(req)
   
   ```
   
   The above call fails with the following error:
   
   ```
   urllib2.HTTPError: HTTP Error 404: Not Found
   ```
   
   If url is set to https://example.com/druid/v2 it works, this change
   makes the port number optional.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to