Do not create empty stats file

This commit is contained in:
benoit74 2023-08-28 13:10:07 +02:00
parent 12dab25e61
commit 7e24388820
No known key found for this signature in database
GPG Key ID: B89606434FC7B530
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (as of version 1.2.0).
## Unreleased
### Fixed
- Scraper stat file is not created empty (#211)
## [1.5.0] - 2023-08-23
### Added

View File

@ -41,7 +41,6 @@ class ProgressFileWatcher:
# touch them all so inotify is not unhappy on add_watch
self.crawl_path.touch()
self.warc2zim_path.touch()
self.stats_path.touch()
self.process = None
def stop(self):