From 11abba30b13573eff294f1f55cfbed371ce3ae0b Mon Sep 17 00:00:00 2001 From: tsukumi Date: Tue, 21 May 2024 04:03:59 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20[Server]=20passlib=20=E3=81=8C=E9=80=81?= =?UTF-8?q?=E5=87=BA=E3=81=99=E3=82=8B=20bcrypt=20=E3=81=AE=E3=83=90?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=83=A7=E3=83=B3=E5=B7=AE=E7=95=B0=E3=81=AB?= =?UTF-8?q?=E3=82=88=E3=82=8B=E8=AD=A6=E5=91=8A=E3=82=92=E7=84=A1=E8=A6=96?= =?UTF-8?q?=20passlib=20=E3=81=AF=E9=95=B7=E5=B9=B4=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E3=81=8C=E6=AD=A2=E3=81=BE=E3=81=A3=E3=81=A6=E3=81=84=E3=82=8B?= =?UTF-8?q?=E3=81=8C=E3=80=81=E4=BB=96=E3=81=AE=E3=83=A9=E3=82=A4=E3=83=96?= =?UTF-8?q?=E3=83=A9=E3=83=AA=E3=81=AB=E5=A4=89=E3=81=88=E3=81=A6=E8=84=86?= =?UTF-8?q?=E5=BC=B1=E6=80=A7=E3=81=8C=E7=99=BA=E7=94=9F=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=81=AE=E3=82=82=E6=80=96=E3=81=84=E3=81=AE=E3=81=A7=E5=BD=93?= =?UTF-8?q?=E9=9D=A2=E3=81=93=E3=82=8C=E3=81=A7=E4=B9=97=E3=82=8A=E5=88=87?= =?UTF-8?q?=E3=82=8B=E4=BA=88=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/KonomiTV.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/KonomiTV.py b/server/KonomiTV.py index d61d6135..130b5a0e 100644 --- a/server/KonomiTV.py +++ b/server/KonomiTV.py @@ -16,6 +16,7 @@ import asyncio import atexit +import logging import platform import subprocess import typer @@ -39,6 +40,10 @@ ) +# passlib が送出する bcrypt のバージョン差異による警告を無視 +# ref: https://github.com/pyca/bcrypt/issues/684 +logging.getLogger('passlib').setLevel(logging.ERROR) + cli = typer.Typer() def version(value: bool):