We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d927b5 commit ea23d4fCopy full SHA for ea23d4f
tests/model_serving/model_server/llmd/utils.py
@@ -381,10 +381,10 @@ def get_scheduler_decision_logs(
381
382
# Get all logs from the scheduler pod
383
# Note: The router-scheduler container is the default/main container
384
- raw_logs = router_scheduler_pod.log()
+ raw_logs = router_scheduler_pod.log(container="main")
385
386
# Target decision message
387
- target_decision_msg = "Selecting pods from candidates sorted by max score"
+ target_decision_msg = "Selecting endpoints from candidates sorted by max score"
388
389
# Filtering logs
390
filtered_logs = "\n".join(line for line in raw_logs.splitlines() if target_decision_msg in line)
0 commit comments