如果的如果

Results 21 comments of 如果的如果

好的。感谢反馈

请贴下数据库结构,包含对应测试样例数据的sql文件和复现代码

文档这个会跟进下,因为队列的话,涉及到万一服务重启导致任务丢失,而业务层认为已经投递了一定会执行,那就是问题了

sorry i cant provide any test request , but it do realy occur in my produce error log

reproduce conf ```conf worker_processes 32; events { worker_connections 65535; } http { init_by_lua_block { httpMethodSwitch = { ['GET'] = function() return ngx.HTTP_GET end, ['HEAD'] = function() return ngx.HTTP_HEAD end, ['PUT']...

temporary solution: ``` -- 特殊UA检查 if ngx.var.http_user_agent then local specialHeader = string.find(ngx.var.http_user_agent, "\x09"); if specialHeader then return end end ```