dbit-xia
dbit-xia
I found the code location `apisix/init.lua`, and the following two places will cause the routing plugin to run twice. Should only one of these two places be executed? 
@kayx23 @hanqingwu It seems that this problem has been around for a while. Is there any progress?
> ``` > -- in the rewrite phase, the plugin executes in the following order: > -- 1. execute the rewrite phase of the plugins on route(including the auth plugins)...
Thanks, please see my test, @hanqingwu ``` ### PUT http://127.0.0.1:9180/apisix/admin/consumers X-API-KEY: edd1c9f034335f136f87ad84b625c8f1 Content-Type: application/json { "username": "jack", "plugins": { "key-auth": { "key": "auth-one" } } } ### PUT http://127.0.0.1:9180/apisix/admin/global_rules/1 X-API-KEY:...
Thanks, however, this method is too strange. I first modified it according to my case, and now it is consistent with the document (but there is no support for opening...
http://2up.ooo/file/get/272/jzmq.dll http://2up.ooo/file/get/273/zmq.jar @dina13600
Try specifying the size unit? ``` nginx_config: http_server_location_configuration_snippet: | client_max_body_size 5m; ```
check version of unitd, don't use `1.32.1`, because there is no `1.32.1` in npmjs If it is not the latest version, you can try `npm install --unsafe-perm unit-http@version`
Wow, your version number is too new, but npmjs only has packages smaller than 1.32.0, why not try 1.32.0 https://www.npmjs.com/package/unit-http?activeTab=versions
I also found that after `SIGINT`, the server's 'close' event will be automatically executed, it didn't wait for all my requests to finish; instead, it directly interrupted the requests. For...