catch migration error
This commit is contained in:
parent
0bac435c72
commit
57402cca8b
1 changed files with 13 additions and 10 deletions
|
@ -30,7 +30,6 @@ Project.find({}, (err, projects) => {
|
|||
const userId = project.user.valueOf();
|
||||
project.files.forEach((file, fileIndex) => {
|
||||
if (file.url && file.url.includes(process.env.S3_BUCKET) && !file.url.includes(userId)) {
|
||||
console.log(file.url);
|
||||
const key = file.url.split('/').pop();
|
||||
console.log(key);
|
||||
const params = {
|
||||
|
@ -38,6 +37,7 @@ Project.find({}, (err, projects) => {
|
|||
CopySource: `${process.env.S3_BUCKET}/${key}`,
|
||||
Key: `${userId}/${key}`
|
||||
};
|
||||
try {
|
||||
client.moveObject(params)
|
||||
.on('err', (err) => {
|
||||
console.log(err);
|
||||
|
@ -48,6 +48,9 @@ Project.find({}, (err, projects) => {
|
|||
console.log(`updated file ${key}`);
|
||||
});
|
||||
});
|
||||
} catch(e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue