Skip to content

Commit 9a0788c

Browse files
committed
chore: add request id
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
1 parent 17340c5 commit 9a0788c

2 files changed

Lines changed: 11 additions & 11 deletions

File tree

buf.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ modules:
33
- path: roadrunner/api
44
- path: third_party/api
55
lint:
6-
disallow_comment_ignores: true
76
ignore:
87
- third_party/api
98
- roadrunner/api/centrifugo/api

roadrunner/api/http/v2/request.proto

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,17 @@ option php_metadata_namespace = "RoadRunner\\HTTP\\DTO\\V2\\GPBMetadata";
99
option php_namespace = "RoadRunner\\HTTP\\DTO\\V2";
1010

1111
message HttpHandlerRequest {
12-
string remote_addr = 1;
13-
string protocol = 2;
14-
string method = 3;
15-
string uri = 4;
16-
map<string, HttpHeaderValue> header = 5;
17-
map<string, HttpHeaderValue> cookies = 6;
18-
string raw_query = 7;
19-
bool parsed = 8;
20-
bytes uploads = 9;
21-
map<string, HttpHeaderValue> attributes = 10;
12+
string id = 1;
13+
string remote_addr = 2;
14+
string protocol = 3;
15+
string method = 4;
16+
string uri = 5;
17+
map<string, HttpHeaderValue> header = 6;
18+
map<string, HttpHeaderValue> cookies = 7;
19+
string raw_query = 8;
20+
bool parsed = 9;
21+
bytes uploads = 10;
22+
map<string, HttpHeaderValue> attributes = 11;
2223
}
2324

2425
message HttpHandlerFetchRequest {

0 commit comments

Comments
 (0)