[Lldb-commits] [lldb] [lldb-dap] Fix DAPError (PR #145010)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Fri Jun 20 08:17:53 PDT 2025


================
@@ -489,7 +489,7 @@ def wait_for_exited(self, timeout: Optional[float] = None):
         return event_dict
 
     def wait_for_terminated(self, timeout: Optional[float] = None):
-        event_dict = self.wait_for_event("terminated", timeout)
+        event_dict = self.wait_for_event("terminated", timeout=timeout)
----------------
JDevlieghere wrote:

This doesn't actually change anything, does it?

https://github.com/llvm/llvm-project/pull/145010


More information about the lldb-commits mailing list