Config updates

Make 6.0 allows admins to specify the Queue item limit in the admin interface. The default value is 100 but some customers requested this to be configurable. In the appsettings of the web.config you can add the QueueLimit and specify a value. Be aware that setting this to high can cause performance issues and/or unresponsive UI experience.

1
2
3
4
5
<appSettings><add key="QueueLimit" value="100" /></appSettings>
What's on this Page