Skip to content

Commit 295ca15

Browse files
committed
fix: Validation fails in RPC context for MqttContext #13350
1 parent ca176ac commit 295ca15

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
+13-13
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
export enum RouteParamtypes {
2-
REQUEST,
3-
RESPONSE,
4-
NEXT,
5-
BODY,
6-
RAW_BODY,
7-
QUERY,
8-
PARAM,
9-
HEADERS,
10-
SESSION,
11-
FILE,
12-
FILES,
13-
HOST,
14-
IP,
2+
REQUEST=0,
3+
RESPONSE=1,
4+
NEXT=2,
5+
BODY=3,
6+
QUERY=4,
7+
PARAM=5,
8+
HEADERS=6,
9+
SESSION=7,
10+
FILE=8,
11+
FILES=9,
12+
HOST=10,
13+
IP=11,
14+
RAW_BODY=12,
1515
}

0 commit comments

Comments
 (0)