eip-cloud-services 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/s3.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eip-cloud-services",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Houses a collection of helpers for connecting with Cloud services.",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/s3.js CHANGED
@@ -121,7 +121,6 @@ exports.get = async ( key, bucket = config?.s3?.Bucket, options = {} ) => {
121
121
  }
122
122
  else {
123
123
 
124
- const response = await S3.send ( command );
125
124
  let data = await streamToBuffer ( response.Body );
126
125
 
127
126
  if ( response.ContentEncoding && response.ContentEncoding === 'gzip' ) {