mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-31 10:01:53 +08:00
ignore streamer connection errors
This commit is contained in:
@@ -100,7 +100,7 @@ class Streamer: # pylint: disable=too-many-instance-attributes
|
|||||||
async with self.__http_session.get(url, timeout=self.__timeout) as response: # type: ignore
|
async with self.__http_session.get(url, timeout=self.__timeout) as response: # type: ignore
|
||||||
response.raise_for_status()
|
response.raise_for_status()
|
||||||
state = (await response.json())["result"]
|
state = (await response.json())["result"]
|
||||||
except aiohttp.ClientConnectorError:
|
except (aiohttp.ClientConnectionError, aiohttp.ServerConnectionError):
|
||||||
pass
|
pass
|
||||||
except Exception:
|
except Exception:
|
||||||
get_logger().exception("Invalid streamer response from /state")
|
get_logger().exception("Invalid streamer response from /state")
|
||||||
|
|||||||
Reference in New Issue
Block a user