We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bc5861 commit f2c4833Copy full SHA for f2c4833
tests/model_serving/model_server/llmd/utils.py
@@ -342,10 +342,10 @@ def get_scheduler_decision_logs(
342
343
# Get all logs from the scheduler pod
344
# Note: The router-scheduler container is the default/main container
345
- raw_logs = router_scheduler_pod.log()
+ raw_logs = router_scheduler_pod.log(container="main")
346
347
# Target decision message
348
- target_decision_msg = "Selecting pods from candidates sorted by max score"
+ target_decision_msg = "Selecting endpoints from candidates sorted by max score"
349
350
# Filtering logs
351
filtered_logs = "\n".join(line for line in raw_logs.splitlines() if target_decision_msg in line)
0 commit comments