kingluo commented on issue #9263:
URL: https://github.com/apache/apisix/issues/9263#issuecomment-1505524557

   @yuqiquan Yes, I confirm there is some issue to route the etcd traffic via 
APISIX: it does not forward the response chunks from upstream to downstream 
(etcd already responds watch result chunk). This issue exists for both http and 
https downstreams (you could double-check the http case).
   
   In fact, if you use the base nginx functionality of APISIX, it works:
   
   `config.yaml`
   
   ```yaml
   nginx_config:
     http_configuration_snippet: |
       server {
           listen 20000;
           location / {
               proxy_pass http://127.0.0.1:2379;
               proxy_http_version 1.1;
               proxy_set_header Connection "";
           }
       }
   
   ```
   
   I will try to find out the cause of the problem later.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to