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
console.info(`The data objects returned from calling ecs.createService were: ${JSON.stringify(resolved)}`);
152
-
resolved.every((e)=>!e)&&(result.error='Timeout exceeded: App Slave container(s) took too long to start. Although they timed out, they may have still started.');
152
+
resolved.every((e)=>!e)&&(result.error='Timeout exceeded: App Emissary container(s) took too long to start. Although they timed out, they may have still started.');
if(numberOfRequestedSlaves<1||numberOfRequestedSlaves>12)thrownewError(`The number of app-slaves requested was: ${numberOfRequestedSlaves}. The supported number of Test Sessions is from 1-12 inclusive.`);
74
+
if(numberOfRequestedEmissaries<1||numberOfRequestedEmissaries>12)thrownewError(`The number of app-emissaries requested was: ${numberOfRequestedEmissaries}. The supported number of Test Sessions is from 1-12 inclusive.`);
75
75
76
76
// timeout in axios is for response times only, if the end-point is down, it will still take a long time. So we just wrap the actual request.
77
77
consthttp=axios.create({/* default is 0 (no timeout) */baseURL: 'http://docker-compose-ui:5000/api/v1',headers: {'Content-type': 'application/json'}});
!resolved[0]&&(result.error='Timeout exceeded: App Slave container(s) took too long to start. Although they timed out, they may have still started. Also check that docker-compose-ui is up.');
82
+
!resolved[0]&&(result.error='Timeout exceeded: App Emissary container(s) took too long to start. Although they timed out, they may have still started. Also check that docker-compose-ui is up.');
0 commit comments