Get channel shutdown delay from database or default
(cls)
| 116 | # Database-dependent settings with fallbacks |
| 117 | @classmethod |
| 118 | def get_channel_shutdown_delay(cls): |
| 119 | """Get channel shutdown delay from database or default""" |
| 120 | settings = cls.get_proxy_settings() |
| 121 | return settings.get("channel_shutdown_delay", 0) |
| 122 | |
| 123 | @classmethod |
| 124 | def get_buffering_timeout(cls): |
no test coverage detected