Skip to content

Commit

Permalink
[IMP] fs_storage: Allow setting eval_options_from_env in configuratio…
Browse files Browse the repository at this point in the history
…n file
  • Loading branch information
vincent-hatakeyama authored and lmignon committed Nov 10, 2024
1 parent b54a4c2 commit 4b4420a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fs_storage/models/fs_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,12 @@ def _get_check_connection_method_selection(self):

@property
def _server_env_fields(self):
return {"protocol": {}, "options": {}, "directory_path": {}}
return {
"protocol": {},
"options": {},
"directory_path": {},
"eval_options_from_env": {},
}

def write(self, vals):
self.__fs = None
Expand Down

0 comments on commit 4b4420a

Please sign in to comment.