shellvon

Results 4 comments of shellvon

@gesinger Thanks for your reply. `inspect` is a good choice to calculate the duration. I also know the correct duration according to the m3u8 file (parsed by [m3u8-parser](https://github.com/videojs/m3u8-parser)). but i...

All right ,thank you all the same, @gesinger. Is there any discussion result now? I am still waiting for your good news.

您可以按照以下步骤排查: 1. `auto_reload_enable` 只能监听到 `onWorkerStart`之后加载的文件有效,所以请确保你修改的文件是在此之后加载的文件,相关文档您可以看[这里](https://wiki.swoole.com/wiki/page/p-server/reload.html)。 2. 若您使用了Docker技术,您还需要排查以下可能: 1. 文件的更新使用了 `Inotify` 监听,一旦有文件变动需要重新加载,您可以在日志看到提示哪些文件会被重新加载,日志查看方式是 `logr/logp`。参见这里: https://github.com/pinguo/php-msf-docker/blob/e3af2b63337938a9d5295cdbe85f19a1e1c3a6aa/config/.bashrc#L14-L15 2. 如果您使用的 CentOS 是 Docker-for-Windows 运行的,那么只能使用`nodemon`来做监听. 3. 受限于 `SELinux` 机制,执行 docker 需要使用 `--privileged` 如果您依然无法做到自动热更新,推荐您使用 `nodemon` 进行管理,命令是: ```bash...