Skip to content

Commit

Permalink
add delay before calling back with URL
Browse files Browse the repository at this point in the history
  • Loading branch information
Default Username authored and root committed Jan 27, 2012
1 parent 08c9f3d commit 416484f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app.js
Expand Up @@ -555,7 +555,9 @@ function localProjectDeploy(userObj, deployerCallback){
var launchURL = "http://"+userObj.teamID+".chaoscollective.org/";
console.log("START: " + stdout);
console.log("DEPLOY SUCCESSFUL: " + launchURL);
deployerCallback(null, launchURL);
setTimeout(function(){
deployerCallback(null, launchURL);
}, 500);
}
); // exec 2
}
Expand Down

0 comments on commit 416484f

Please sign in to comment.