diff --git a/composer.lock b/composer.lock index 6924639d3..af7a54016 100644 --- a/composer.lock +++ b/composer.lock @@ -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", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 976c3dab7..51f1c0666 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -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": { diff --git a/vendor/services.php b/vendor/services.php index 45f215360..e353bd416 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/service/QueueService.php b/vendor/zoujingli/think-library/src/service/QueueService.php index 7cf83de5a..18e42eac2 100644 --- a/vendor/zoujingli/think-library/src/service/QueueService.php +++ b/vendor/zoujingli/think-library/src/service/QueueService.php @@ -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; }