Fix client endpoint used

This commit is contained in:
Richard Shephard 2019-05-16 15:36:05 +02:00
parent 7ccced45aa
commit bebd04a398

View File

@ -52,7 +52,7 @@ ProjectionsManager.prototype.abort = function(name, userCredentials) {
* @returns {Promise<void>} * @returns {Promise<void>}
*/ */
ProjectionsManager.prototype.reset = function(name, userCredentials) { ProjectionsManager.prototype.reset = function(name, userCredentials) {
return this._client.abort(this._httpEndPoint, name, userCredentials); return this._client.reset(this._httpEndPoint, name, userCredentials);
}; };
/** /**