switched submodule back to elasticsearch/elasticsearch, updated the generator to properly pull updates from the related branch

This commit is contained in:
Spencer Alger
2014-01-16 11:58:35 -07:00
parent 34f3d3ce28
commit 980163dfb2
12 changed files with 2318 additions and 792 deletions

View File

@ -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);
});
}
}
};