Sanic框架之關閉啓動LOGO以及出現的鏈接超時錯誤

前言

  • 每次啓動的時候都會出現一個小人LOGO,而且標語是Gotta go fast!
  • 每次當你長時間未作出響應的時候,控制檯都會返回一個connection_timeout錯誤

使用

from sanic import Sanic
from sanic import response

app = Sanic()

@app.route('/')
async def test(request):
    return response.text('Hello World!')


if __name__ == "__main__":
    app.config.LOGO = None  #關閉啓動logo
    app.config.KEEP_ALIVE = False  # 關閉長鏈接
    app.run(debug=True)

小結

  • 經過設置LOGO 爲 None 之後就不會出現小人LOGO了.
  • 默認KEEP_ALIVE是開啓,而且請求超時時間是60秒,當設置爲False之後就不會出現超時錯誤了
相關文章
相關標籤/搜索