Skip to content

Commit

Permalink
The storage_engine was not actually a configurable parameter (#101)
Browse files Browse the repository at this point in the history
without getting the parameter from the different configuration options, the value is actually hardcoded and cannot be changed by the user.
  • Loading branch information
niklas-holzwarth-bos-ag authored Mar 17, 2024
1 parent 7da82d0 commit aaeb28e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymongo_inmemory/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __init__(
)
self.archive_folder = mkdir_ifnot_exist(self.download_folder, self.url_hash)
self.extracted_folder = mkdir_ifnot_exist(self.extract_folder, self.url_hash)
self.storage_engine = "ephemeralForTest"
self.storage_engine = conf("storage_engine", "ephemeralForTest")

def __str__(self):
return (
Expand Down

0 comments on commit aaeb28e

Please sign in to comment.