Socket
Socket
Sign inDemoInstall

aws-log-replay

Package Overview
Dependencies
147
Maintainers
36
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.0 to 2.3.1-0

7

index.js

@@ -74,3 +74,3 @@ var request = require('requestretry');

if (this._closed) return setImmediate(callback);
if (typeof pathname !== 'string') pathname = pathname.toString('utf8');

@@ -85,7 +85,8 @@ if (!pathname || pathname.indexOf('/') !== 0) return callback();

encoding: null,
uri: requrl
uri: requrl,
time: true
}, (err, res, body) => {
if (err) return callback(err);
if (res.statusCode !== 200) return callback();
this.push({ url: requrl, body: body });
this.push({ url: requrl, elapsedTime: res.elapsedTime, statusCode: res.statusCode, body: body });
callback();

@@ -92,0 +93,0 @@ });

{
"name": "aws-log-replay",
"version": "2.3.0",
"version": "2.3.1-0",
"description": "Transform and replay CloudFront, ELB Classic, and ALB logs.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc