mirror of
				https://github.com/blakeblackshear/frigate.git
				synced 2025-10-27 10:52:11 +01:00 
			
		
		
		
	revert false warning messages
This commit is contained in:
		
							parent
							
								
									ed1897db71
								
							
						
					
					
						commit
						3c46a33992
					
				@ -101,13 +101,19 @@ class RecordingMaintainer(threading.Thread):
 | 
			
		||||
        for camera in grouped_recordings.keys():
 | 
			
		||||
            segment_count = len(grouped_recordings[camera])
 | 
			
		||||
            if segment_count > keep_count:
 | 
			
		||||
                logger.warning(
 | 
			
		||||
                    f"Too many recording segments in cache for {camera}. Keeping the {keep_count} most recent segments out of {segment_count}, discarding the rest..."
 | 
			
		||||
                )
 | 
			
		||||
                ####
 | 
			
		||||
                # Need to find a way to tell if these are aging out based on retention settings or if the system is overloaded.
 | 
			
		||||
                ####
 | 
			
		||||
                # logger.warning(
 | 
			
		||||
                #     f"Too many recording segments in cache for {camera}. Keeping the {keep_count} most recent segments out of {segment_count}, discarding the rest..."
 | 
			
		||||
                # )
 | 
			
		||||
                to_remove = grouped_recordings[camera][:-keep_count]
 | 
			
		||||
                for f in to_remove:
 | 
			
		||||
                    cache_path = f["cache_path"]
 | 
			
		||||
                    logger.warning(f"Discarding a recording segment: {cache_path}")
 | 
			
		||||
                    ####
 | 
			
		||||
                    # Need to find a way to tell if these are aging out based on retention settings or if the system is overloaded.
 | 
			
		||||
                    ####
 | 
			
		||||
                    # logger.warning(f"Discarding a recording segment: {cache_path}")
 | 
			
		||||
                    Path(cache_path).unlink(missing_ok=True)
 | 
			
		||||
                    self.end_time_cache.pop(cache_path, None)
 | 
			
		||||
                grouped_recordings[camera] = grouped_recordings[camera][-keep_count:]
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user