mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
ComposerUpdate
This commit is contained in:
parent
eaabc93b47
commit
1f70f1a697
8
composer.lock
generated
8
composer.lock
generated
@ -783,12 +783,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||||
"reference": "d14437d0ac14aa52fa7627ec99155d90c0b51c6e"
|
"reference": "92f62b2deed4cebbedc38896089590c00a291b60"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/d14437d0ac14aa52fa7627ec99155d90c0b51c6e",
|
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/92f62b2deed4cebbedc38896089590c00a291b60",
|
||||||
"reference": "d14437d0ac14aa52fa7627ec99155d90c0b51c6e",
|
"reference": "92f62b2deed4cebbedc38896089590c00a291b60",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -832,7 +832,7 @@
|
|||||||
],
|
],
|
||||||
"description": "ThinkPHP v6.0 Development Library",
|
"description": "ThinkPHP v6.0 Development Library",
|
||||||
"homepage": "http://framework.thinkadmin.top",
|
"homepage": "http://framework.thinkadmin.top",
|
||||||
"time": "2019-12-02T09:26:38+00:00"
|
"time": "2019-12-03T02:21:05+00:00"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packages-dev": [],
|
"packages-dev": [],
|
||||||
|
8
vendor/composer/installed.json
vendored
8
vendor/composer/installed.json
vendored
@ -805,12 +805,12 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
"url": "https://github.com/zoujingli/ThinkLibrary.git",
|
||||||
"reference": "d14437d0ac14aa52fa7627ec99155d90c0b51c6e"
|
"reference": "92f62b2deed4cebbedc38896089590c00a291b60"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/d14437d0ac14aa52fa7627ec99155d90c0b51c6e",
|
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/92f62b2deed4cebbedc38896089590c00a291b60",
|
||||||
"reference": "d14437d0ac14aa52fa7627ec99155d90c0b51c6e",
|
"reference": "92f62b2deed4cebbedc38896089590c00a291b60",
|
||||||
"shasum": "",
|
"shasum": "",
|
||||||
"mirrors": [
|
"mirrors": [
|
||||||
{
|
{
|
||||||
@ -826,7 +826,7 @@
|
|||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"topthink/framework": "^6.0"
|
"topthink/framework": "^6.0"
|
||||||
},
|
},
|
||||||
"time": "2019-12-02T09:26:38+00:00",
|
"time": "2019-12-03T02:21:05+00:00",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"extra": {
|
"extra": {
|
||||||
"think": {
|
"think": {
|
||||||
|
2
vendor/services.php
vendored
2
vendor/services.php
vendored
@ -1,5 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
// This file is automatically generated at:2019-12-02 17:28:13
|
// This file is automatically generated at:2019-12-03 10:22:48
|
||||||
declare (strict_types = 1);
|
declare (strict_types = 1);
|
||||||
return array (
|
return array (
|
||||||
0 => 'think\\app\\Service',
|
0 => 'think\\app\\Service',
|
||||||
|
@ -72,7 +72,7 @@ class WorkQueue extends Command
|
|||||||
} else {
|
} else {
|
||||||
// 锁定任务状态
|
// 锁定任务状态
|
||||||
$this->app->db->name('SystemQueue')->where(['code' => $this->code])->update([
|
$this->app->db->name('SystemQueue')->where(['code' => $this->code])->update([
|
||||||
'status' => '2', 'enter_time' => time(), 'exec_desc' => '', 'attempts' => $this->app->db->raw('attempts+1'),
|
'status' => '2', 'enter_time' => microtime(true), 'exec_desc' => '', 'attempts' => $this->app->db->raw('attempts+1'),
|
||||||
]);
|
]);
|
||||||
// 设置进程标题
|
// 设置进程标题
|
||||||
if (($process = ProcessService::instance())->iswin()) {
|
if (($process = ProcessService::instance())->iswin()) {
|
||||||
@ -113,7 +113,7 @@ class WorkQueue extends Command
|
|||||||
{
|
{
|
||||||
$desc = explode("\n", trim(is_string($message) ? $message : ''));
|
$desc = explode("\n", trim(is_string($message) ? $message : ''));
|
||||||
$result = $this->app->db->name('SystemQueue')->where(['code' => $this->code])->update([
|
$result = $this->app->db->name('SystemQueue')->where(['code' => $this->code])->update([
|
||||||
'status' => $status, 'outer_time' => time(), 'exec_desc' => $desc[0],
|
'status' => $status, 'outer_time' => microtime(true), 'exec_desc' => $desc[0],
|
||||||
]);
|
]);
|
||||||
$this->output->writeln(is_string($message) ? $message : '');
|
$this->output->writeln(is_string($message) ? $message : '');
|
||||||
return $result !== false;
|
return $result !== false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user