Skip to content

Commit

Permalink
Fix UI
Browse files Browse the repository at this point in the history
  • Loading branch information
walkor committed Nov 8, 2024
1 parent cf35f9c commit 1f955a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -1189,8 +1189,8 @@ protected static function formatProcessStatusData(): string
foreach ($workerInfo as $pid => $info) {
if (!isset($dataWaitingSort[$pid])) {
$statusStr .= "$pid\t" . str_pad('N/A', 7) . " "
. str_pad($info['listen'], static::getUiColumnLength('maxSocketNameLength')) . " "
. str_pad((string)$info['name'], static::getUiColumnLength('maxWorkerNameLength')) . " "
. str_pad($info['listen'], $maxLen1) . " "
. str_pad((string)$info['name'], $maxLen2) . " "
. str_pad('N/A', 11) . " " . str_pad('N/A', 9) . " "
. str_pad('N/A', 7) . " " . str_pad('N/A', 13) . " N/A [busy] \n";
continue;
Expand Down

0 comments on commit 1f955a6

Please sign in to comment.