changed default API version to 0.90, to prevent from breaking things that will auto-upgrade

This commit is contained in:
Spencer Alger
2014-01-17 14:47:47 -07:00
parent d9dacf64f1
commit 3b70395d57

View File

@ -69,7 +69,7 @@ function Client(config) {
delete this._namespaces;
}
EsApiClient.prototype = _.funcEnum(config, 'apiVersion', Client.apis, 'master');
EsApiClient.prototype = _.funcEnum(config, 'apiVersion', Client.apis, '0.90');
return new EsApiClient(config);
}