This commit is contained in:
leo
2026-07-14 19:33:04 +02:00
parent 9c94ae82bf
commit d7dcea7383
4 changed files with 4 additions and 6 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ and this project adheres to
- 🩹(backend) identify externally provisioned users to PostHog
- 🐛(backend) fix info panel crash for unregistered rooms
- ♿️(frontend) focus side panel container on open #1452
- 💥(backend) replace recording encoding options with a profile/resolution model.
- 💥(backend) replace recording encoding options with a profile model
## [1.23.0] - 2026-07-08
@@ -1,6 +1,6 @@
"""Tests for the per-recording encoding resolution in BaseEgressService."""
# pylint: disable=protected-access,redefined-outer-name,unused-argument
# pylint: disable=protected-access,redefined-outer-name,unused-argument,no-member
from unittest.mock import Mock
@@ -121,9 +121,7 @@ def test_config_encoding_options_default(custom_encoding_enabled):
per-recording API, so both toggle states produce the same default.
"""
with override_settings(
RECORDING_CUSTOM_ENCODING_ENABLED=custom_encoding_enabled
):
with override_settings(RECORDING_CUSTOM_ENCODING_ENABLED=custom_encoding_enabled):
WorkerServiceConfig.from_settings.cache_clear()
config = WorkerServiceConfig.from_settings()
@@ -2,7 +2,7 @@
Test rooms API endpoints in the Meet core app: start recording.
"""
# pylint: disable=redefined-outer-name,unused-argument
# pylint: disable=redefined-outer-name,unused-argument,no-member
from unittest import mock