Skip to content

Commit

Permalink
Merge pull request #14537 from akx/gradio-analytics-enabled-again
Browse files Browse the repository at this point in the history
Ensure GRADIO_ANALYTICS_ENABLED is set early enough
  • Loading branch information
AUTOMATIC1111 authored Jan 5, 2024
2 parents 15ec54d + 9805f35 commit 6ffbff0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions modules/initialize.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import importlib
import logging
import os
import sys
import warnings
from threading import Thread
Expand All @@ -18,6 +19,7 @@ def imports():
warnings.filterwarnings(action="ignore", category=DeprecationWarning, module="pytorch_lightning")
warnings.filterwarnings(action="ignore", category=UserWarning, module="torchvision")

os.environ.setdefault('GRADIO_ANALYTICS_ENABLED', 'False')
import gradio # noqa: F401
startup_timer.record("import gradio")

Expand Down
3 changes: 1 addition & 2 deletions modules/launch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
# Whether to default to printing command output
default_command_live = (os.environ.get('WEBUI_LAUNCH_LIVE_OUTPUT') == "1")

if 'GRADIO_ANALYTICS_ENABLED' not in os.environ:
os.environ['GRADIO_ANALYTICS_ENABLED'] = 'False'
os.environ.setdefault('GRADIO_ANALYTICS_ENABLED', 'False')


def check_python_version():
Expand Down

0 comments on commit 6ffbff0

Please sign in to comment.