api/routes/alerts.py:621 calls Request.query_params.get("token") on the Starlette Request class, not an instance. The function has no request parameter. query_params is an instance property, so calling .get() on the class raises AttributeError.
The Netdata webhook challenge endpoint fails on every request because of this.
api/routes/alerts.py:621 calls Request.query_params.get("token") on the Starlette Request class, not an instance. The function has no request parameter. query_params is an instance property, so calling .get() on the class raises AttributeError.
The Netdata webhook challenge endpoint fails on every request because of this.