Details
-
Type:
Bug
-
Status: Resolved (View workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects versions: 3.7.0
-
Fix versions: 3.8.2
-
Components: Core
-
Labels:None
-
Ignite Forum URL:
Description
We found that after running for several hours, the openfire server always has a 100% CPU usage.
By using the jvirtualVM to monitor the CPU usage sample graph, we found this
is caused by the read() method (see the code below) of the FlashCrossDomainHandler
class. it can run into a infinite loop under some circumstances.
Then we commented the read() method, the validation of the incoming stream and
returned the cross domain policy text straightway in while loop of the startServer()
method , as the result the CPU usage became normal.