Skip to content

Commit

Permalink
Add final fix for caching
Browse files Browse the repository at this point in the history
  • Loading branch information
markjonestx committed Sep 6, 2022
1 parent d151ca8 commit 5da5ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyPWA/libs/file/processor/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def __read_data(self, filename):
plugin = _get_read_plugin(filename, False)
data = plugin.get_memory_parser().parse(filename)
if self.__use_cache and plugin.use_caching:
cache.write(filename, data)
cache.write(filename, data, intermediate=False)
return data


Expand Down

0 comments on commit 5da5ce7

Please sign in to comment.