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
It appears on TestcaseExecutionList page, because of 3 ajax requests executed.
For example, if we go from a test execution to the executions list with the button “Execution list (with same country and environment)”, we have 3 ajax requests executed:
We can see that the first and second request take respectively 16 seconds to perform. And the problem is that they returned all results..and not filtered results. It’s the third request (76ms) which returns the good results filtered correcly. So the first and second requests are useless and consume lot of time.
Results for the 1st request
5 120 630 results (16 seconds). Results are not filtered (ES country PE executions in JSON for example) All is retrieved.
Results for the 2st request
5 120 636 results (16 seconds). Results are not filtered (ES country and PE executions in JSON for example), All is retrieved.
Results for the 3rd request
Finally the request which returns the filtered results as we want, in 76ms.
So, the latency problem is due to the first and second requests which take a lot of time to be performed and seems not useless.
Hello, since the update to v 4.16, we faced a lot of network latency, page take a very long time to load
Can you please take a look
thanks
The text was updated successfully, but these errors were encountered: