上次更新日期:
2021年4月29日
|
也应用至 Communiqué
Issue
You connect to an authoring instance with many handles (for example 10,000) with the CQDE and the instance freezes with high load. The IDE runs into a timeout after submitting the login credentials.
Solution
Work around the issue by doing the following:
- Open the /system/cqde/templates/server_tools.ecma file.
- Comment line (307):
var pages = Server.Tools.getWebPages(parentUrl); - Add the following line:
var pages = new Object();
The result looks like the following:
// var pages = Server.Tools.getWebPages(parentUrl); var pages = new Object();
- Save the changes and restart CQ.