You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2019/08/07 06:12:14 UTC

[GitHub] [pulsar] shiv4289 opened a new issue #4906: [Dashboard] Enable communication to broker over https, add ca-cert verify

shiv4289 opened a new issue #4906: [Dashboard] Enable communication to broker over https, add ca-cert verify
URL: https://github.com/apache/pulsar/issues/4906
 
 
   **Is your feature request related to a problem? Please describe.**
   Dashboard should be able to talk to broker over https. Currently, collector in the dashboard does not accept verify param in requests.
   
   **Describe the solution you'd like**
   Allow to mount cert to a path in docker container at a specific location, then use the path in verify cert param in python request of collector
   
   **Describe alternatives you've considered**
   No alternative
   
   **Additional context**
   Collector.py
   
   > def get(base_url, path):
   >     if base_url.endswith('/'): path = path[1:]
   >     return requests.get(base_url + path,
   >                         headers=http_headers,
   >                         proxies=http_proxyes,
   >                         ).json()

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


With regards,
Apache Git Services