From 56d4968c0964f6d395ee87338d9957ae3376293e Mon Sep 17 00:00:00 2001 From: xiaomlove Date: Thu, 24 Nov 2022 02:25:24 +0800 Subject: [PATCH] fix updateUserSeedingLeechingTime --- app/Jobs/UpdateUserSeedingLeechingTime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/UpdateUserSeedingLeechingTime.php b/app/Jobs/UpdateUserSeedingLeechingTime.php index 2c946d6f..ea5a8b14 100644 --- a/app/Jobs/UpdateUserSeedingLeechingTime.php +++ b/app/Jobs/UpdateUserSeedingLeechingTime.php @@ -54,7 +54,7 @@ class UpdateUserSeedingLeechingTime implements ShouldQueue $logPrefix = sprintf("[CLEANUP_CLI_UPDATE_SEEDING_LEECHING_TIME], commonRequestId: %s, beginUid: %s, endUid: %s", $this->requestId, $this->beginUid, $this->endUid); $sql = sprintf( "update users set seedtime = (select sum(seedtime) from snatched where userid = users.id), leechtime=(select sum(leechtime) from snatched where userid = users.id), seed_time_updated_at = '%s' where id > %s and id <= %s and status = 'confirmed' and enabled = 'yes'", - $this->beginUid, $this->endUid, now()->toDateTimeString() + now()->toDateTimeString(), $this->beginUid, $this->endUid ); $results = NexusDB::statement($sql); $costTime = time() - $beginTimestamp;