Skip to content

Commit

Permalink
[2023-09-18 08:18] Microfix for Actuele Waarnemingen Register
Browse files Browse the repository at this point in the history
Fixed File Identifier length to prevent erroneously detecting the regular suffix as being unsupported.
  • Loading branch information
rflinnenbank committed Sep 18, 2023
1 parent 8e73033 commit dd6c6ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __init__(self):
self.runtime_limit = 3 * 60 # Three minutes maximum runtime
self.permanent_suffixes = []
self.filename = self.repository_folder / f"{self.file_prefix}_register.nc"
self.file_identifier_length = 0
self.file_identifier_length = 8

self.logger.debug(
f"Initialized the [{self.repository_name}] repository",
Expand Down

0 comments on commit dd6c6ca

Please sign in to comment.