File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2551,7 +2551,7 @@ following options:
2551
2551
- ` timeout ` - payload reception timeout in milliseconds. Sets the maximum time allowed for the
2552
2552
client to transmit the request payload (body) before giving up and responding with a Request
2553
2553
Timeout (408) error response. Set to ` false ` to disable. Defaults to ` 10000 ` (10 seconds).
2554
- - ` uploads ` - the directory used for writing file uploads. Defaults to ` os.tmpDir () ` .
2554
+ - ` uploads ` - the directory used for writing file uploads. Defaults to ` os.tmpdir () ` .
2555
2555
- ` failAction ` - determines how to handle payload parsing errors. Allowed values are:
2556
2556
- ` 'error' ` - return a Bad Request (400) error response. This is the default value.
2557
2557
- ` 'log' ` - report the error but continue processing the request.
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ exports.connection = {
51
51
output : 'data' ,
52
52
parse : true ,
53
53
timeout : 10 * 1000 , // Determines how long to wait for receiving client payload. Defaults to 10 seconds
54
- uploads : Os . tmpDir ( ) ,
54
+ uploads : Os . tmpdir ( ) ,
55
55
defaultContentType : 'application/json' ,
56
56
compression : { }
57
57
} ,
You can’t perform that action at this time.
0 commit comments