This commit is contained in:
Andre Natal 2019-09-06 15:07:34 -07:00 коммит произвёл Andre Natal
Родитель 8524034010
Коммит 95b124b9c6
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -316,8 +316,9 @@ app.post('*', function(req, res, next) {
opsdec_stderr_buf.push(data);
});
const timestamp = new Date().toISOString();
const key_uuid = uuid();
const key_base = key_uuid.slice(0, 2) + '/' + key_uuid;
const key_base = timestamp.split('T')[0] + '/' + key_uuid.slice(0, 2) + '/' + key_uuid;
// assemble and store the metadata file
const metadata = {
@ -332,6 +333,7 @@ app.post('*', function(req, res, next) {
: '1',
useragent: req.headers['user-agent'],
producttag: req.headers['product-tag'],
datetime: timestamp,
};
if (config.s3_bucket) {