From 0ba74b9d60f43caddff413764b1330150afd7d0e Mon Sep 17 00:00:00 2001 From: Alex Jones Date: Thu, 2 Apr 2026 11:33:25 +0100 Subject: [PATCH] fix: use correct shorthand for 'Running' in the scheduler When the 'DISPATCHED' status name was changed to 'RUNNING', I remembered to replace the status header, but forgot to replace the hardcoded shorthand in the status bar messages in the core scheduler logic. This will be addressed by the new async status printers, but should also be fixed in the scheduler in the meantime to prevent confusion. Signed-off-by: Alex Jones --- src/dvsim/scheduler/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dvsim/scheduler/core.py b/src/dvsim/scheduler/core.py index e8f6a4f0..b063c7fb 100644 --- a/src/dvsim/scheduler/core.py +++ b/src/dvsim/scheduler/core.py @@ -153,7 +153,7 @@ def __init__( width = len(str(self._total[target])) field_fmt = f"{{:0{width}d}}" self._msg_fmt = ( - f"Q: {field_fmt}, D: {field_fmt}, P: {field_fmt}, " + f"Q: {field_fmt}, R: {field_fmt}, P: {field_fmt}, " f"F: {field_fmt}, K: {field_fmt}, T: {field_fmt}" ) msg = self._msg_fmt.format(0, 0, 0, 0, 0, self._total[target])