We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80394fc commit 09b256bCopy full SHA for 09b256b
lib/http-request.js
@@ -61,7 +61,7 @@ HttpRequest.prototype.execute = function() {
61
this.client.emit('riak.request.start', this.event)
62
63
var request = httpClient.request(meta, function(err, response) {
64
- var normalstatus = [200,204,300,304];
+ var normalstatus = [200,201,204,300,304];
65
if(self.event.method == 'delete') normalstatus.push(404);
66
// Are we using a connection pool and do we have any errors ?
67
if (meta._pool && err) return callback(err);
0 commit comments