Skip to content

Commit

Permalink
fix: Change default NGINX_RTMP_UPDATE_TIMEOUT to 10 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
munshkr committed Feb 5, 2024
1 parent 30c1d0d commit c10f7c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ TIME_ZONE=UTC

DB_PATH=./muxy.db

NGINX_RTMP_UPDATE_TIMEOUT=30
NGINX_RTMP_UPDATE_TIMEOUT=10

EMAIL_FROM=
2 changes: 1 addition & 1 deletion muxy/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
"PAGE_SIZE": 1000,
}

NGINX_RTMP_UPDATE_TIMEOUT = int(os.getenv("NGINX_RTMP_UPDATE_TIMEOUT", "30"))
NGINX_RTMP_UPDATE_TIMEOUT = int(os.getenv("NGINX_RTMP_UPDATE_TIMEOUT", "10"))

EMAIL_BACKEND = os.getenv(
"EMAIL_BACKEND", "django.core.mail.backends.console.EmailBackend"
Expand Down

0 comments on commit c10f7c9

Please sign in to comment.