Skip to content

Commit 57a4779

Browse files
committed
It: minor change for easier debug
Signed-off-by: Emelia Lei <[email protected]>
1 parent c4a007c commit 57a4779

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/python/blazingmq/dev/configurator/configurator.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,11 @@ def deploy_programs(self, broker: Broker, site: Site) -> None:
266266
site.install(str(paths.tool), "bin")
267267
site.install(str(paths.plugins), ".")
268268

269-
for script, cmd in ("run", "exec"), ("debug", "gdb --args"):
269+
for script, cmd in (
270+
("run", "exec"),
271+
("debug", "gdb --args"),
272+
("debug-lldb", "lldb --"),
273+
):
270274
site.create_file(
271275
str(script),
272276
RUN_SCRIPT.format(cmd=cmd, host=broker.name),

src/python/blazingmq/dev/it/process/proc.py

+2
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,8 @@ def start(self):
208208
universal_newlines=False,
209209
)
210210

211+
self._internal_logger.info(f"Current pid = {self._process.pid}")
212+
211213
self._queue = queue.Queue()
212214

213215
self._stdout_thread = threading.Thread(

0 commit comments

Comments
 (0)