From 60e2a8bd6d8b7a968999fe53b06409bb02868c13 Mon Sep 17 00:00:00 2001 From: Wataru Nishimoto Date: Thu, 20 Feb 2020 13:50:15 +0900 Subject: [PATCH 1/2] feat: don't invalidate CDN cache when updating access date (#197) --- Model/RolesRoomsUser.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Model/RolesRoomsUser.php b/Model/RolesRoomsUser.php index 486f177..534f9ad 100644 --- a/Model/RolesRoomsUser.php +++ b/Model/RolesRoomsUser.php @@ -555,7 +555,9 @@ public function saveAccessed($roleRoomUserId) { } //トランザクションCommit + $this->invalidateCDN = false; $this->commit(); + $this->invalidateCDN = true; } catch (Exception $ex) { //トランザクションRollback From eb7cf4381cf2b7a1610243fc793617023584f334 Mon Sep 17 00:00:00 2001 From: s-nakajima Date: Sat, 8 Aug 2020 16:32:17 +0900 Subject: [PATCH 2/2] =?UTF-8?q?change:=20test:=20Travis=E3=81=8B=E3=82=89P?= =?UTF-8?q?HP5.6=E3=82=92=E5=89=8A=E9=99=A4,php72=E4=BB=A5=E9=99=8D?= =?UTF-8?q?=E3=81=A7UnitTest=E3=81=A7Warning=E3=81=8C=E5=87=BA=E3=82=8B?= =?UTF-8?q?=E3=81=9F=E3=82=81=E4=BF=AE=E6=AD=A3=20https://github.com/NetCo?= =?UTF-8?q?mmons3/NetCommons3/issues/1588?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c7bc7d1..6d4bcc0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ dist: trusty env: matrix: - - NETCOMMONS_VERSION=master DB=mysql + - NETCOMMONS_VERSION=availability DB=mysql global: - secure: "UvZqrQzrJFGPz3z6Pbi8h5S8vEFcQT92eLLmOaapL9R+jkycRMKT2sUUKp/nM7C/TcNC/OeUULcrv/cnLH/0sb/ns6nJyoTGzOqlmViAAn92wxKVocy1kbCRYi0RWSrm8DiC492RqLk7oXhz4x8yTMHfowgw4S55M034VZVxtQg=" - GIT_COMMITTER_NAME=s-nakajima