Skip to content

Commit

Permalink
process table 新增startUpTime 字段
Browse files Browse the repository at this point in the history
  • Loading branch information
kiss291323003 committed Dec 1, 2020
1 parent 47d6315 commit 6ece332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Process/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
namespace EasySwoole\Component\Process;

use EasySwoole\Component\Singleton;
use EasySwoole\Component\TableManager;
use Swoole\Process;
use Swoole\Server;
use Swoole\Table;
Expand All @@ -25,6 +24,7 @@ function __construct()
$this->table->column('group',Table::TYPE_STRING,50);
$this->table->column('memoryUsage',Table::TYPE_INT,8);
$this->table->column('memoryPeakUsage',Table::TYPE_INT,8);
$this->table->column('startUpTime',Table::TYPE_INT,8);
$this->table->create();
}

Expand Down

0 comments on commit 6ece332

Please sign in to comment.