我使用此npm https://github.com/RiptideElements/s3fs并得到以下错误

Unhandled rejection BucketAlreadyOwnedByYou: Your previous request to create the
 named bucket succeeded and you already own it.


在我的app.js中

var s3 = require('./config/db.js');
var fs = require('fs');
var S3FS = require('s3fs');

var s3_config = require('./config/s3_config');
var s3fsImpl = new S3FS(s3_config.bucket,{
  accessKeyId : s3_config.key,
  secretAccessKey : s3_config.secret
});
s3fsImpl.create();


有任何想法或提示为什么我会出错吗?

最佳答案

the documentation


  s3fs.create(options[, callback])
  
  在S3上创建一个新存储桶。


您似乎正在调用创建新S3存储桶的方法。该存储桶是否已经存在?

08-07 14:00