We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c016a7 commit 77569a4Copy full SHA for 77569a4
1 file changed
module/device/connection.py
@@ -823,6 +823,9 @@ def check_mumu_bridge_network(self):
823
instance = self.find_emulator_instance(
824
serial=self.serial,
825
)
826
+ if instance is None:
827
+ logger.warning(f'Failed to check check_mumu_bridge_network, emulator instance not found')
828
+ return False
829
file = instance.mumu_vms_config('customer_config.json')
830
try:
831
with open(file, mode='r', encoding='utf-8') as f:
0 commit comments