sonata-nfv / son-bss

SONATA's Service Platform BSS
http://www.sonata-nfv.eu
Apache License 2.0
0 stars 2 forks source link

Service Instantiation - Changing timeout limit to 15 min #45

Closed santiagordguez closed 8 years ago

jbonnet commented 8 years ago

@srodriguezOPT Could you make this value (15mins) be passed through an environment variable?

jbonnet commented 8 years ago

@srodriguezOPT Also, where is this timeout applied? Wouldn't (not for Y1!) an AJAX approach work better?

santiagordguez commented 8 years ago

This timeout applies in the protractor test of the E2E service instantiation. browser.wait(EC.textToBePresentInElement(element(by.repeater("InstantiationRequest in InstantiationRequests").column('status')) ,'ready', 900000));

In instantiation request section, the browser looks for a status change to "ready" during a maximum of 15 min. When request changes to ready the test ends successfully but after 15 minutes, if request doesn't be ready, the test is marked as failed.

jbonnet commented 8 years ago

Ah, ok, so it's not in the normal operation of the BSS app... that's good, please ignore my second comment... ;-)