Skip to content
Snippets Groups Projects
Commit a0a069ae authored by Taya Snijder's avatar Taya Snijder
Browse files

Fixed bug where interval was still in hours, not minutes

parent d000aef3
No related branches found
No related tags found
1 merge request!138Resolve L2SS-341 "2021 09 28 branched from master adopt hdf writer to xsts"
......@@ -39,7 +39,7 @@ class hdf5_writer:
# file handing
self.file_location = file_location
self.new_file_time_interval = timedelta(hours=new_file_time_interval)
self.new_file_time_interval = timedelta(seconds=new_file_time_interval)
self.last_file_time = datetime.min.replace(tzinfo=pytz.UTC)
self.file = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment