feat(server): missing exif extract nightly task (#754)

* fix: nightly reverse geocoding task checking for mapbox

* refactor: remove file size from image processor and queue data

* feat: add missing exif nightly job

* Remove filesize requirement in assetUploadedProcessorName queue insertion

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
Zack Pollard 2022-09-28 11:41:50 +01:00 committed by GitHub
parent b0cd2522e0
commit c33775b944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 46 additions and 35 deletions

View file

@ -10,9 +10,4 @@ export interface IAssetUploadedJob {
* Original file name
*/
fileName: string;
/**
* File size in byte
*/
fileSize: number;
}

View file

@ -10,11 +10,6 @@ export interface IExifExtractionProcessor {
* Original file name
*/
fileName: string;
/**
* File size in byte
*/
fileSize: number;
}
export interface IVideoLengthExtractionProcessor {
@ -27,11 +22,6 @@ export interface IVideoLengthExtractionProcessor {
* Original file name
*/
fileName: string;
/**
* File size in byte
*/
fileSize: number;
}
export interface IReverseGeocodingProcessor {