Skip to content

Commit d670b1b

Browse files
committed
feature: add id to thhandler response
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
1 parent 53cd167 commit d670b1b

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

roadrunner/api/http/v2/response.proto

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ option php_metadata_namespace = "RoadRunner\\HTTP\\DTO\\V2\\GPBMetadata";
99
option php_namespace = "RoadRunner\\HTTP\\DTO\\V2";
1010

1111
message HttpHandlerResponse {
12-
int64 status = 1;
13-
bytes body = 2;
14-
map<string, HttpHeaderValue> headers = 3;
12+
string id = 1;
13+
int64 status = 2;
14+
bytes body = 3;
15+
map<string, HttpHeaderValue> headers = 4;
1516
}

0 commit comments

Comments
 (0)