#1022 increase maximum API REST request size

Software inventory generates a request larger that 64 Kbytes.
Rise the maximum API REST request size to 128 Kbytes.
master
OpenGnSys Support Team 2021-02-04 13:29:18 +01:00
parent 85d092864c
commit 0a09c5b09c
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ enum og_cmd_type {
OG_CMD_MAX
};
#define OG_MSG_REQUEST_MAXLEN 65536
#define OG_MSG_REQUEST_MAXLEN 131072
struct og_client {
struct list_head list;

View File

@ -1,7 +1,7 @@
import requests
import unittest
MAX_REQ_SIZE = 65536
MAX_REQ_SIZE = 131072
class TestBigRequest(unittest.TestCase):