Could someone help me understand why I get this error?
2020-03-21 08:19:22,612 [ERROR] Exception occurred while handling uri: unknown
Traceback (most recent call last):
File "/home/cesar.acuna/.local/lib/python3.6/site-packages/sanic/server.py", line 276, in data_received
self.parser.feed_data(data)
File "httptools/parser/parser.pyx", line 193, in httptools.parser.parser.HttpParser.feed_data
httptools.parser.errors.HttpParserInvalidMethodError: invalid HTTP method
2020-03-21 08:19:22,991 [ERROR] Exception occurred while handling uri: unknown
Traceback (most recent call last):
File "/home/cesar.acuna/.local/lib/python3.6/site-packages/sanic/server.py", line 276, in data_received
self.parser.feed_data(data)
File "httptools/parser/parser.pyx", line 193, in httptools.parser.parser.HttpParser.feed_data
httptools.parser.errors.HttpParserInvalidMethodError: invalid HTTP method
2020-03-21 16:08:49,544 [ERROR] Error happened when trying to save conversation tracker to 'SQLTrackerStore'. Falling back to use the 'InMemoryTrackerStore'. Please investigate the following error: (pymysql.err.OperationalError) (2006, "MySQL server has gone away (ConnectionResetError(104, 'Connection reset by peer'))")
[SQL: SELECT events.id AS events_id, events.sender_id AS events_sender_id, events.type_name AS events_type_name, events.timestamp AS events_timestamp, events.intent_name AS events_intent_name, events.action_name AS events_action_name, events.data AS events_data
FROM events, (SELECT max(events.timestamp) AS session_start
FROM events
WHERE events.sender_id = %(sender_id_1)s AND events.type_name = %(type_name_1)s) AS anon_1
WHERE events.sender_id = %(sender_id_2)s AND (events.timestamp >= anon_1.session_start OR anon_1.session_start IS NULL) ORDER BY events.timestamp]
[parameters: {'sender_id_1': '4074733c-f8b8-45dd-a520-27bd40f5a05a+d1cd02b0-0dad-4ed1-bde5-a206ba8e12d6', 'type_name_1': 'session_started', 'sender_id_2': '4074733c-f8b8-45dd-a520-27bd40f5a05a+d1cd02b0-0dad-4ed1-bde5-a206ba8e12d6'}]
(Background on this error at: http://sqlalche.me/e/e3q8).