bryantyan
bryantyan
The issue only occurs when “params.ui.sidebar_menu_compact: true"
Problem solved, thanks to the advice from @danperks . I reinstalled and reset the settings. - The surface issue was caused by installing the awesome emacs extension and activating one...
Accessing the OpenAI API interface in China requires the use of a VPN
Hyperf 的定时任务依赖独立的 CrontabProcess 进程运行,若该进程未启动,所有任务自然就不会执行。HTTP 服务由 HttpServer 进程管理,两者应该是独立的,有可能会出现 “其他功能ok,但定时任务实效的“ 的情况。 再发生这种情况 , 在新部署的 Pod 内执行 ps aux | grep hyperf,查看是否有 crontab 相关的进程。 好像叫 CrontabProcess类似的。 看看是不这个问题, 再排查原因。 如果是这个问题, 在 K8s 的 postStart...
1. CrontabProcess 启动日志: vendor/hyperf/crontab/Process/CrontabProcess.php 的 handle 方法,在开头和结尾添加日志 2. 任务注册日志: 在 vendor/hyperf/crontab/CrontabManager.php 的 addCrontab 方法中添加日志,确认任务是否被正确注册 3. 调度触发日志: vendor/hyperf/crontab/Strategy/StrategyInterface.php 的实现类,添加任务触发前的日志 启动了 , 就继续跟, 看看哪个阶段出问题了 呗