hello
i have a discord bot and a falcon http server with only a test routing that should print
import falcon
class TestResource:
def on_get(self, req, resp):
print('test')
resp.status = falcon.HTTP_200
resp.text = 'test '
api = falcon.API()
api.add_route('/test', TestResource())
both the discord bot and the falcon server are on the same repl
the discord bot works fine but when i try to send a http request to:
https://discordbot.my_username.repl.co/
i get an error both on firefox and from my vscode running python code with requests.get
firefox error: Error code: SSL_ERROR_INTERNAL_ERROR_ALERT
python requests error: requests.exceptions.SSLError: HTTPSConnectionPool(host=‘discordbot.my_username.repl.co’, port=443): Max retries exceeded with url: /test (Caused by SSLError(SSLError(1, ‘[SSL: TLSV1_ALERT_INTERNAL_ERROR] tlsv1 alert internal error (_ssl.c:997)’)))
i really dont know what to do.