Skip to content

Commit e34a996

Browse files
committed
Added warning to readme.md file
1 parent dca4a22 commit e34a996

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export AWS_SECRET_ACCESS_KEY=982u289432u48jsdfkjsr3894
4444
export AWS_SESSION_TOKEN (optional)
4545
```
4646

47-
Local FS Declaration
47+
Local NFS Declaration **NOTE NFS still under development i.e it won't function appropriately
4848
```bash
4949
export MOUNT_POINT=/Users/nitrocode/bucket/
5050
```

lib/NFSStorageSystem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ class NFSStorageSystem extends StorageSystem {
1010
*/
1111
constructor() {
1212
super();
13-
this.nfsMount = sails.config.custom.nfStorage.nfsMount;
14-
this.nfsBucket = sails.config.custom.nfStorage.bucketName;
13+
this.nfsMount = '';
14+
this.nfsBucket = '';
1515
}
1616

1717
async upload(source, destination) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node_storage_manager",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "A storage manager for nodejs",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)