This commit is contained in:
as2252258@163.com
2021-07-26 17:05:41 +08:00
parent 7e701fa7cb
commit 170de0b822
+4 -1
View File
@@ -157,6 +157,9 @@ class ServerInotify implements CustomProcess
} }
const LISTEN_TYPE = [IN_CREATE, IN_DELETE, IN_MODIFY, IN_MOVED_TO, IN_MOVED_FROM];
/** /**
* 开始监听 * 开始监听
*/ */
@@ -173,7 +176,7 @@ class ServerInotify implements CustomProcess
} }
foreach ($events as $ev) { foreach ($events as $ev) {
if (!in_array($ev['mask'], [IN_CREATE, IN_DELETE, IN_MODIFY, IN_MOVED_TO, IN_MOVED_FROM])) { if (!in_array($ev['mask'], static::LISTEN_TYPE)) {
continue; continue;
} }
//非重启类型 //非重启类型