Dear erpnext experts,
I am unable to fix the below error in event streaming.
requests.exceptions.SSLError: HTTPSConnectionPool(host=‘site_name’, port=8001): Max retries exceeded with url: /api/resource/Event%20Producer/https://site_name:8001 (Caused by SSLError(SSLError(1, ‘[SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1006)’)))
Possible source of error: event_streaming (app)
The error is because of the frappe bench is running on the port http://localhost:8000
and SSL is running on the port https://site_name:8443
The consumer has created the call-back URL by default on the bench running port 8000, so the SSL and call-back URL are mismatched.
can anyone please rectify this error or make any suggestions to do the event streaming in v15 with SSL.