v0.3.0-unstable9

This commit is contained in:
Yann Stepienik 2023-05-01 00:48:13 +01:00
parent ceac360533
commit 9d6773f27b
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "cosmos-server", "name": "cosmos-server",
"version": "0.3.0-unstable8", "version": "0.3.0-unstable9",
"description": "", "description": "",
"main": "test-server.js", "main": "test-server.js",
"bugs": { "bugs": {

View file

@ -240,10 +240,10 @@ func SmartShieldMiddleware(policy utils.SmartShieldPolicy) func(http.Handler) ht
policy.PolicyStrictness = 2 // NORMAL policy.PolicyStrictness = 2 // NORMAL
} }
if(policy.PerUserSimultaneous == 0) { if(policy.PerUserSimultaneous == 0) {
policy.PerUserSimultaneous = 12 policy.PerUserSimultaneous = 10
} }
if(policy.MaxGlobalSimultaneous == 0) { if(policy.MaxGlobalSimultaneous == 0) {
policy.MaxGlobalSimultaneous = 160 policy.MaxGlobalSimultaneous = 200
} }
if(policy.PrivilegedGroups == 0) { if(policy.PrivilegedGroups == 0) {
policy.PrivilegedGroups = utils.ADMIN policy.PrivilegedGroups = utils.ADMIN