jiaxin
jiaxin
Checked the code and found that if we want to be compatible with http GET, then the changes are significant. I agree with @akshayjshah that you can make simplifications in...
还有群吗 昨天晚上又更新了 贼头疼 https://developers.weixin.qq.com/blogdetail?action=get_post_info&lang=zh_CN&token=&docid=000aee01f98fc0cbd4b6ce43b56c01
I check the code and didn't find etcd is used for what.
https://connectrpc.com/docs/faq/#how-do-i-proxy-the-connect-protocol-through-nginx As the doc said that nginx can't proxy stream. I am using caddy now and it works fine. Next time i will try just use connectrpc's `go http server`...
here is my openresty config ``` server { listen 80 ; listen 443 ssl http2 ; server_name api.mydomain.com; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Real-IP $remote_addr;...
Yes, i also have websocket endpoints. I will try to comment the nginx `upgrade` config and test the one-way stream.
感谢 这样看似乎可以自定义一个isSuccessState的判断函数 然后在是否需要重试和OnAfterResponse里复用?
After implemented the `WrapStreamingHandler(StreamingHandlerFunc) StreamingHandlerFunc`, it works fine now.
Thanks for your reply, let me add a little background. If we have a 640*480 size pdf page, I need to add a text watermark at the bottom of it...
same issues