Disable "TypedStorage is deprecated" user warnings

These warnings clog up the logfiles and worry users.
This commit is contained in:
JeLuF 2023-04-28 22:52:21 +02:00 committed by GitHub
parent 70a37fda57
commit ae52d9ef22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ import socket
import sys
import traceback
import urllib
import warnings
from easydiffusion import task_manager
from easydiffusion.utils import log
@ -86,6 +87,9 @@ def init():
os.makedirs(USER_UI_PLUGINS_DIR, exist_ok=True)
os.makedirs(USER_SERVER_PLUGINS_DIR, exist_ok=True)
# https://pytorch.org/docs/stable/storage.html
warnings.filterwarnings('ignore', category=UserWarning, message='TypedStorage is deprecated')
load_server_plugins()
update_render_threads()