Skip to content

Commit 574f08c

Browse files
committed
Incorrect Run Targets in Docstring. Unused control_socket Variable
1 parent 512cdb2 commit 574f08c

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

feature_integration_tests/test_cases/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
# SPDX-License-Identifier: Apache-2.0
1212
# *******************************************************************************
1313

14-
1514
load("@pip_score_venv_test//:requirements.bzl", "all_requirements")
1615
load("@rules_python//python:pip.bzl", "compile_pip_requirements")
1716
load("@score_lifecycle_health//:defs.bzl", "launch_manager_config")

feature_integration_tests/test_cases/tests/lifecycle/test_lifecycle_state_manager_if.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def _try_send_activate_target(
109109
True if the request was sent without error, False otherwise.
110110
"""
111111
# Check if the daemon exposes a control-socket path or a CLI binary.
112-
control_socket = daemon_info.get("control_socket_path")
112+
_control_socket = daemon_info.get("control_socket_path") # Reserved for future IPC implementation
113113
lm_ctl_binary = daemon_info.get("lm_ctl_binary")
114114

115115
if lm_ctl_binary and Path(lm_ctl_binary).is_file():
@@ -148,10 +148,10 @@ class TestLifecycleStateManagerIf:
148148
"""
149149
Validate the control-interface path for activate_target and status queries.
150150
151-
The daemon configuration already contains multiple run targets (startup,
152-
running, fallback) so the initial activation already exercises the
153-
activate_target path. Where available, a direct IPC call is sent to
154-
trigger an additional run-target switch, and log evidence is checked.
151+
The daemon configuration contains run targets (Startup and fallback),
152+
so the initial activation already exercises the activate_target path.
153+
Where available, a direct IPC call is sent to trigger an additional
154+
run-target switch, and log evidence is checked.
155155
"""
156156

157157
def test_status_query_returns_current_run_target(

0 commit comments

Comments
 (0)