You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "N:/Git/GitHub/Aeros/aeros/Request.py", line 88, in <module>
async def home():
File "N:\Git\GitHub\Aeros\aeros\WebServer.py", line 277, in new_route_decorator
self.logger.critical(f'Endpoint function "{func.__name__}" for "{rule}" could not be routed: ' + str(e))
AttributeError: 'NoneType' object has no attribute '__name__'
The text was updated successfully, but these errors were encountered:
Quart keeps track of endpoint functions via some ind of memory addres or hash. Since we were decorating each function again with the EasyRequest or sync_to_async, this caused trouble. Since these are gone now (b3fd68d), we are good again...
raises
The text was updated successfully, but these errors were encountered: