Project

General

Profile

Bug #80061

Updated by Jonas Renggli about 7 years ago


 h2. Steps to Reproduce 

 # Ensure there's something to index. Add files, reset @last_indexed@ field <pre> 
 UPDATE `sys_file` 
 SET `last_indexed` = 0; 
 </pre>  
 # Delete file in filesystem 
 # Run scheduler Task "File Abstraction Layer: Extract metadata in storage" (@FileStorageExtractionTask@) 
 # Run scheduler Task "File Abstraction Layer: Update storage index" (@FileStorageIndexingTask@) 
 # Run scheduler Task "File Abstraction Layer: Extract metadata in storage" (@FileStorageExtractionTask@) 

 h2. Actual Behavior 

 * Error message <pre> 
 Task failed to execute successfully. Class: TYPO3\CMS\Scheduler\Task\FileStorageExtractionTask, UID: 4 
 </pre> 
 * Metadata for all other files won't be extracted 

 h2. Expected Behavior 

 * Skip missing file and continue with next file 
 * Respect @missing@ field in @sys_file@ (set by @FileStorageIndexingTask@)

Back