Skip to content

Commit 265bb1e

Browse files
committed
chore: ignore RPC names lints
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
1 parent f29fca0 commit 265bb1e

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

roadrunner/api/http/v2/http.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ message HttpHeader {
1111
}
1212

1313
message HttpHeaderValue {
14-
repeated bytes values = 1;
14+
repeated string values = 1;
1515
}

roadrunner/api/http/v2/service.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,17 @@ option php_metadata_namespace = "RoadRunner\\HTTP\\DTO\\V2\\GPBMetadata";
1111
option php_namespace = "RoadRunner\\HTTP\\DTO\\V2";
1212

1313
service HttpProxyService {
14+
// buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
15+
// buf:lint:ignore RPC_REQUEST_STANDARD_NAME
16+
// buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
1417
rpc FetchRequest(google.protobuf.Empty) returns (HttpHandlerRequest);
18+
// buf:lint:ignore RPC_REQUEST_STANDARD_NAME
19+
// buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
1520
rpc FetchRequests(HttpHandlerFetchRequest) returns (HttpHandlerRequests);
21+
// buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
1622
rpc HttpHandler(HttpHandlerRequest) returns (HttpHandlerResponse);
23+
// buf:lint:ignore RPC_REQUEST_RESPONSE_UNIQUE
24+
// buf:lint:ignore RPC_REQUEST_STANDARD_NAME
25+
// buf:lint:ignore RPC_RESPONSE_STANDARD_NAME
1726
rpc HttpResponse(HttpHandlerResponse) returns (google.protobuf.Empty);
1827
}

0 commit comments

Comments
 (0)