]> Git Repo - qemu.git/commitdiff
python/machine: remove _remove_monitor_sockfile property
authorJohn Snow <[email protected]>
Thu, 18 Nov 2021 20:46:15 +0000 (15:46 -0500)
committerJohn Snow <[email protected]>
Mon, 22 Nov 2021 23:40:59 +0000 (18:40 -0500)
It doesn't matter if it was the user or the class itself that specified
where the sockfile should be created; the fact is that if we are using a
sockfile here, we created it and we can clean it up.

Signed-off-by: John Snow <[email protected]>
Reviewed-by: Willian Rampazzo <[email protected]>
Message-id: 20211118204620.1897674[email protected]
Signed-off-by: John Snow <[email protected]>
python/qemu/machine/machine.py

index b1dd77b53885629eba452cdd1bc265ec6442b237..ea9e07805df10a57115dace06885b8d0b82ff581 100644 (file)
@@ -141,12 +141,10 @@ class QEMUMachine:
 
         if monitor_address is not None:
             self._monitor_address = monitor_address
-            self._remove_monitor_sockfile = False
         else:
             self._monitor_address = os.path.join(
                 self.sock_dir, f"{self._name}-monitor.sock"
             )
-            self._remove_monitor_sockfile = True
 
         self._console_log_path = console_log
         if self._console_log_path:
@@ -315,8 +313,7 @@ class QEMUMachine:
             self._remove_files.append(self._console_address)
 
         if self._qmp_set:
-            if self._remove_monitor_sockfile:
-                assert isinstance(self._monitor_address, str)
+            if isinstance(self._monitor_address, str):
                 self._remove_files.append(self._monitor_address)
             self._qmp_connection = QEMUMonitorProtocol(
                 self._monitor_address,
This page took 0.031018 seconds and 4 git commands to generate.