Fix missing = in delete uri
This commit is contained in:
parent
2f4850680f
commit
1449b43b8d
|
@ -103,7 +103,7 @@ ProjectionsClient.prototype.updateQuery = function(httpEndPoint, name, query, us
|
||||||
};
|
};
|
||||||
|
|
||||||
ProjectionsClient.prototype.delete = function(httpEndPoint, name, deleteEmittedStreams, deleteStateStream, deleteCheckpointStream, userCredentials) {
|
ProjectionsClient.prototype.delete = function(httpEndPoint, name, deleteEmittedStreams, deleteStateStream, deleteCheckpointStream, userCredentials) {
|
||||||
return this.sendDelete(httpEndPoint + '/projection/' + name + '?deleteStateStream=' + deleteStateStream + '&deleteCheckpointStream' + deleteCheckpointStream + '&deleteEmittedStreams=' + deleteEmittedStreams, '', userCredentials, HTTP_OK);
|
return this.sendDelete(httpEndPoint + '/projection/' + name + '?deleteStateStream=' + deleteStateStream + '&deleteCheckpointStream=' + deleteCheckpointStream + '&deleteEmittedStreams=' + deleteEmittedStreams, '', userCredentials, HTTP_OK);
|
||||||
};
|
};
|
||||||
|
|
||||||
ProjectionsClient.prototype.request = function(method, _url, data, userCredentials, expectedCode) {
|
ProjectionsClient.prototype.request = function(method, _url, data, userCredentials, expectedCode) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user