Commit 9746df84ea7f3366c62b2e58649af32d7c53ea56
Committed by
Andrew Shvayka
1 parent
59f85f1c
Fix for default values for claiming queue and duration
Showing
1 changed file
with
3 additions
and
3 deletions
... | ... | @@ -110,7 +110,7 @@ security: |
110 | 110 | # Enable/disable claiming devices, if false -> the device's [claimingAllowed] SERVER_SCOPE attribute must be set to [true] to allow claiming specific device |
111 | 111 | allowClaimingByDefault: "${SECURITY_CLAIM_ALLOW_CLAIMING_BY_DEFAULT:true}" |
112 | 112 | # Time allowed to claim the device in milliseconds |
113 | - duration: "${SECURITY_CLAIM_DURATION:60000}" # 1 minute, note this value must equal claimDevices.timeToLiveInMinutes value | |
113 | + duration: "${SECURITY_CLAIM_DURATION:86400000}" # 1 minute, note this value must equal claimDevices.timeToLiveInMinutes value | |
114 | 114 | basic: |
115 | 115 | enabled: "${SECURITY_BASIC_ENABLED:false}" |
116 | 116 | oauth2: |
... | ... | @@ -348,8 +348,8 @@ caffeine: |
348 | 348 | timeToLiveInMinutes: 1440 |
349 | 349 | maxSize: 0 |
350 | 350 | claimDevices: |
351 | - timeToLiveInMinutes: 1 | |
352 | - maxSize: 0 | |
351 | + timeToLiveInMinutes: 1440 | |
352 | + maxSize: 1000 | |
353 | 353 | securitySettings: |
354 | 354 | timeToLiveInMinutes: 1440 |
355 | 355 | maxSize: 0 | ... | ... |