File tree Expand file tree Collapse file tree
feature_integration_tests/test_cases Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111# SPDX-License-Identifier: Apache-2.0
1212# *******************************************************************************
1313
14-
1514load ("@pip_score_venv_test//:requirements.bzl" , "all_requirements" )
1615load ("@rules_python//python:pip.bzl" , "compile_pip_requirements" )
1716load ("@score_lifecycle_health//:defs.bzl" , "launch_manager_config" )
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments