Results 4 issues of yc.li

```python import asyncio import pytest from sanic import Blueprint, Sanic, response @pytest.fixture def app(): app = Sanic("test_sanic_app") bp = Blueprint("blueprint_route", url_prefix="/") @bp.route("/test_get") async def bp_root(request): return response.json({"GET": True}) app.blueprint(bp) yield...

When watching config, due to missing tenant param, server will return http 403