Merge pull request #1224 from JeLuF/patch-23

Disable "TypedStorage is deprecated" user warnings
This commit is contained in:
cmdr2 2023-04-29 07:04:46 +05:30 committed by GitHub
commit 01202c5c2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ import socket
import sys import sys
import traceback import traceback
import urllib import urllib
import warnings
from easydiffusion import task_manager from easydiffusion import task_manager
from easydiffusion.utils import log from easydiffusion.utils import log
@ -86,6 +87,9 @@ def init():
os.makedirs(USER_UI_PLUGINS_DIR, exist_ok=True) os.makedirs(USER_UI_PLUGINS_DIR, exist_ok=True)
os.makedirs(USER_SERVER_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() load_server_plugins()
update_render_threads() update_render_threads()