ComposerUpdate

This commit is contained in:
Anyon 2020-07-29 15:31:01 +08:00
parent 1b2db3a131
commit 5bdb46f766
4 changed files with 10 additions and 10 deletions

8
composer.lock generated
View File

@ -929,12 +929,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f"
"reference": "aae4fe718837428b6eae19b97ab34ca5e0ce529d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/5cadd93e2f12dcb645b6a63652da5b37d220274f",
"reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/aae4fe718837428b6eae19b97ab34ca5e0ce529d",
"reference": "aae4fe718837428b6eae19b97ab34ca5e0ce529d",
"shasum": "",
"mirrors": [
{
@ -978,7 +978,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
"time": "2020-07-28T07:55:11+00:00"
"time": "2020-07-29T06:09:04+00:00"
},
{
"name": "zoujingli/wechat-developer",

View File

@ -955,12 +955,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f"
"reference": "aae4fe718837428b6eae19b97ab34ca5e0ce529d"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/5cadd93e2f12dcb645b6a63652da5b37d220274f",
"reference": "5cadd93e2f12dcb645b6a63652da5b37d220274f",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/aae4fe718837428b6eae19b97ab34ca5e0ce529d",
"reference": "aae4fe718837428b6eae19b97ab34ca5e0ce529d",
"shasum": "",
"mirrors": [
{
@ -976,7 +976,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
"time": "2020-07-28T07:55:11+00:00",
"time": "2020-07-29T06:09:04+00:00",
"type": "library",
"extra": {
"think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2020-07-29 09:57:16
// This file is automatically generated at:2020-07-29 15:30:40
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -186,7 +186,7 @@ class QueueService extends Service
if (count($data['history']) > 10) {
$data['history'] = array_slice($data['history'], -10);
}
$this->app->cache->set("queue_{$this->code}_progress", $data);
$this->app->cache->set("queue_{$this->code}_progress", $data, 86400);
}
return $data;
}