notes....

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2021-01-13 18:22:56 +03:00
parent d6ade16950
commit 41415238e0
2 changed files with 3 additions and 1 deletions

View File

@ -2719,6 +2719,9 @@ function(title, func){
// ready thus the first call will process all the inputs and the // ready thus the first call will process all the inputs and the
// later calls will get empty inputs (unless any new inputs are while // later calls will get empty inputs (unless any new inputs are while
// processing added)... // processing added)...
// i.e. within a queue/task async processing model there is no guarantee
// that the item will be processed in the same call tree that it
// was added in...
// //
// XXX might be a good idea to split this into a generic and domain parts // XXX might be a good idea to split this into a generic and domain parts
// and move the generic part into types/runner... // and move the generic part into types/runner...

View File

@ -2473,7 +2473,6 @@ var FileSystemWriterActions = actions.Actions({
// normal images (resize)... // normal images (resize)...
} else if(resize){ } else if(resize){
// XXX should this be sync??? // XXX should this be sync???
// XXX BUG: this creates unneeded backups...
return that.makeResizedImage(gid, size, img_dir, { name, logger }) return that.makeResizedImage(gid, size, img_dir, { name, logger })
// normal images (copy)... // normal images (copy)...