Skip to content

Commit 2541191

Browse files
committed
Fix argument list for methods.MKCOL in promise-base file server
1 parent 130e8d8 commit 2541191

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/file_server_promises.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ methods.PUT = function(path, request) {
123123
});
124124
};
125125

126-
methods.MKCOL = function(path, request, response) {
126+
methods.MKCOL = function(path, request) {
127127
return inspectPath(path).then(function(stats) {
128128
if (!stats)
129129
return fsp.mkdir(path).then(returnNoContent);

0 commit comments

Comments
 (0)