switched submodule back to elasticsearch/elasticsearch, updated the generator to properly pull updates from the related branch
This commit is contained in:
@ -135,15 +135,19 @@ function YamlDoc(doc, file) {
|
||||
if (err) {
|
||||
err.message += ' in ' + action.name;
|
||||
}
|
||||
done(err);
|
||||
process.nextTick(function () {
|
||||
done(err);
|
||||
});
|
||||
});
|
||||
} else {
|
||||
try {
|
||||
action.bound();
|
||||
done();
|
||||
process.nextTick(done);
|
||||
} catch (err) {
|
||||
err.message += ' in ' + action.name;
|
||||
done(err);
|
||||
process.nextTick(function () {
|
||||
done(err);
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user