Merge branch 'ent-4667-aadcm-peta-la-ejecucion-de-tareas-programadas' into 'develop'

web2image control phantomjs flow

See merge request artica/pandorafms!2739
This commit is contained in:
Daniel Rodriguez 2019-09-23 11:40:08 +02:00
commit 596bd6a566
1 changed files with 7 additions and 1 deletions

View File

@ -61,6 +61,7 @@ page.onConsoleMessage = function(msg) {
page.onError = function(msg) {
console.log(msg);
page.close();
phantom.exit();
};
page.onCallback = function(st) {
@ -74,4 +75,9 @@ page.onCallback = function(st) {
phantom.exit();
};
page.open(url, "POST", post_data, function(status) {});
page.open(url, "POST", post_data, function(status) {
if (status == "fail") {
console.out("Failed to generate chart.");
phantom.exit();
}
});