-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
async parallel image upload #1
Conversation
index.js
Outdated
@@ -1,10 +1,19 @@ | |||
const Sharinpix = require('sharinpix'); | |||
// const secretUrl = 'sharinpix://55a77236-7167-455f-a146-ce2282906880:_EiLHGQM30s_TDPBr58cqA_cOM04yjfFitDnbB0tFLLyroU@kherin.ngrok.io/api/v1'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SECRET URL ! :O :O :O
index.js
Outdated
let outputFilePath = `${__dirname}/csv-jsons/${csvJsonId}.csv`; | ||
// let csvJsonId = uuidV4(); | ||
let utcdate = ("0" + date.getUTCDate()).slice(-2); | ||
let month = ("0" + date.getMonth()).slice(-2); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
espaces en plus
index.js
Outdated
// let csvJsonId = uuidV4(); | ||
let utcdate = ("0" + date.getUTCDate()).slice(-2); | ||
let month = ("0" + date.getMonth()).slice(-2); | ||
let csvJsonId = date.getFullYear()+'-'+month+'-'+utcdate+'-'+date.getHours()+date.getMinutes()+date.getSeconds(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
manque d'espaces
lib/csv-upload.js
Outdated
}, | ||
function createBox(results, callback){ | ||
_.each(results, function(imageImport){ | ||
setTimeout(function() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setTimeout fires only once!!!
No description provided.