mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
remove jruby task
This commit is contained in:
parent
8c227e46ef
commit
c6ec47369b
1 changed files with 0 additions and 18 deletions
|
@ -1,18 +0,0 @@
|
|||
var request = require('request');
|
||||
module.exports = function (grunt) {
|
||||
|
||||
grunt.registerTask('wait_for_jruby', 'Is it started yet?', function () {
|
||||
var done = this.async();
|
||||
function checkJRuby() {
|
||||
request('http://127.0.0.1:5601', function (err, resp) {
|
||||
if (err) {
|
||||
setTimeout(checkJRuby, 1000);
|
||||
} else {
|
||||
done();
|
||||
}
|
||||
});
|
||||
}
|
||||
checkJRuby();
|
||||
|
||||
});
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue