diff options
Diffstat (limited to 'service/http/rpc_test.go')
-rw-r--r-- | service/http/rpc_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/service/http/rpc_test.go b/service/http/rpc_test.go index ba3efd2e..669b201c 100644 --- a/service/http/rpc_test.go +++ b/service/http/rpc_test.go @@ -27,7 +27,7 @@ func Test_RPC(t *testing.T) { httpCfg: `{ "enable": true, "address": ":6029", - "maxRequest": 1024, + "maxRequestSize": 1024, "uploads": { "dir": ` + tmpDir() + `, "forbid": [] @@ -88,7 +88,7 @@ func Test_RPC_Unix(t *testing.T) { httpCfg: `{ "enable": true, "address": ":6029", - "maxRequest": 1024, + "maxRequestSize": 1024, "uploads": { "dir": ` + tmpDir() + `, "forbid": [] @@ -142,7 +142,7 @@ func Test_Workers(t *testing.T) { httpCfg: `{ "enable": true, "address": ":6029", - "maxRequest": 1024, + "maxRequestSize": 1024, "uploads": { "dir": ` + tmpDir() + `, "forbid": [] |