Kui Zeng

Results 5 issues of Kui Zeng

**Describe the bug** 编译错误信息没有高亮显示的问题,输出信息截图如下: ![image](https://user-images.githubusercontent.com/1586033/182516374-c454dd85-8297-4a50-bf40-dc0fc6ad5faa.png) **To Reproduce** **Expected behavior** 希望报错的行能高亮显示 **Error message** **System (please complete the following information):** - OS: centos - Python version: 2.7.5 - Version blade (developing, unversioned)...

type: bug

only support KV, Lease, Watch service API now

我想尝试用brpc来访问etcd的kv服务,实现了一个put key value的功能,demo代码如下,功能是正常的,但是我想用brpc实现watch功能,就出现问题了。 ``` void PutKeyValue(brpc::Channel& channel) { brpc::Controller cntl; brpc::URI& uri = cntl.http_request().uri(); uri.set_path("/v3/kv/put"); cntl.http_request().set_method(brpc::HTTP_METHOD_POST); butil::IOBufBuilder os; os

I want to access etcd restfull api with cpp client. In watch request, my demo code as follow runs ok. ``` cpp etcdserverpb::WatchRequest wr; auto* create_request = wr.mutable_create_request(); create_request->set_key(watch_key); create_request->set_range_end(range_end);...

stale

**Describe the bug (描述bug)** 使用brpc实现了一个http client 发送请求到公司内部的一个web server上 ,同样的这个代码 使用brpc 1.7.0 返回的结果是 [E1010]HTTP/1.1 308 Unknown status code (308)。 而使用brpc 1.1.0 请求是正常的。 **To Reproduce (复现方法)** 由于这个web server是内部的服务,暂时没法提供公开的可复现的服务。 **Expected behavior (期望行为)** 想请教下...