Skip to content

Commit

Permalink
Fix missing protocol for *fakeS3* which is needed for *node* v0.12.x
Browse files Browse the repository at this point in the history
* Removes the previous exception found with *fakeS3* and all importing/creation of scripts.
* Bump `./package.json` to reflect tested nodejs major versions... **do not use 0.12.0 on nodejitsu due to previous deploy failures during 0.10.33 static testing

**NOTE** Regression tested on 0.10.xx and appears okay... retested on local pro. There are some deprecation warnings that may not be able to be addressed until node host is upgraded in OpenUserJS#425

Applies to OpenUserJS#581
  • Loading branch information
Martii committed May 1, 2015
1 parent 4d0a1a7 commit 42aa3e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion controllers/scriptStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if (isPro) {
} else {
// You need to install (and ruby too): https://github.com/jubos/fake-s3
// Then run the fakes3.sh script or: fakes3 -r fakeS3 -p 10001
var DEV_AWS_URL = process.env.DEV_AWS_URL || 'localhost:10001';
var DEV_AWS_URL = process.env.DEV_AWS_URL || 'http://localhost:10001';
AWS.config.update({
accessKeyId: 'fakeId',
secretAccessKey: 'fakeKey',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"postinstall": "node dev/init.js"
},
"engines": {
"node": ">=0.10.32 <0.11.0",
"node": ">=0.10.32 <0.11.0 || >=0.12.0 <=0.12.2",
"npm": ">=1.4.28"
},
"private": true
Expand Down

0 comments on commit 42aa3e3

Please sign in to comment.