@@ -33,7 +33,7 @@ var BUCKET_OPS_MAX = 1000;
  */
 function registerReqListeners(req, fn){
   req.on('response', function(res){ fn(null, res); });
-  req.on('error', function(err){ fn(err); });
+  req.on('error', fn);
 }
 
 function ensureLeadingSlash(filename) {