Hi,
Does your scripts take a long time to run? Are you using load balancer?
Ihad an issue like this before. With scripts which take more than 1 hour to run, report can not upload to ALM server after it finish. After checking, we found that the root cause come from the duration connect to sever.
We set 2 params as below:
CREATE_HTTP_SESSION = Y
WAIT_BEFORE_DISCONNECT = 120
-CREATE_HTTP_SESSION is used as your environment has load balancer. Since the test runs for 90 mins, if this parameter is set, the session is maintained (Sticky session) with the same server is maintained. WAIT_BEFORE_DISCONNECT is set to 120 mins. Previously it was set to 60 mins and the connection got disconnected which caused this issue.
- You can set WAIT_BEFORE_DISCONNECT to -1 so that the session will not disconnect.