You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each chunk is not taking longer than 30s to deliver (configurable via
OSGi)
This is due to the CDN not allowing streaming servlets (i.e. will always
allow for it to finish before delivering it to the client).
This closes#810
Copy file name to clipboardExpand all lines: accesscontroltool-bundle/src/main/java/biz/netcentric/cq/tools/actool/ui/AcToolUiService.java
+41-23Lines changed: 41 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -123,12 +123,20 @@ public class AcToolUiService {
123
123
124
124
@AttributeDefinition(name="Write access", description="Principal names allowed to modify users/groups and permissions in the system via ACTool configuration files. Only leveraged for Touch UI but not for Web Console Plugin.")
@AttributeDefinition(name="Log stream request maximum runtime", description="Maximum time in milliseconds until the log stream request should be answered. Must be less than the timeout of the CDN (60 seconds for Fastly used by AEMaaCS).")
/** Server-sent events emitted for an asynchronous execution log
416
+
/**
417
+
* Server-sent events emitted for an asynchronous execution log. As the Fastly CDN used with AEM as a Cloud Service does not have <a href="https://docs.fastly.com/en/guides/streaming-miss">streaming</a>
418
+
* enabled, this is delivering the events in chunks.
0 commit comments