Skip to content

Commit

Permalink
remove use_temp_files configuration parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjaysrikakulam committed Aug 1, 2024
1 parent f98a682 commit 76c6022
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 2 deletions.
Binary file modified doc/source/admin/file_source_templates.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/source/admin/file_source_webdav_configuration.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified doc/source/admin/file_source_webdav_configuration_template.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions lib/galaxy/files/templates/examples/production_webdav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@
login: '{{ variables.login }}'
writable: '{{ variables.writable }}'
password: '{{ secrets.password }}'
temp_path: null # Uses /tmp as default, configure it if needed
2 changes: 0 additions & 2 deletions lib/galaxy/files/templates/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ class WebdavFileSourceTemplateConfiguration(StrictModel):
login: Union[str, TemplateExpansion]
password: Union[str, TemplateExpansion]
writable: Union[bool, TemplateExpansion] = False
use_temp_files: Optional[Union[bool, TemplateExpansion]] = None
temp_path: Optional[Union[str, TemplateExpansion]] = None
template_start: Optional[str] = None
template_end: Optional[str] = None
Expand All @@ -124,7 +123,6 @@ class WebdavFileSourceConfiguration(StrictModel):
login: str
password: str
writable: bool = False
use_temp_files: Optional[bool] = None
temp_path: Optional[str] = None


Expand Down

0 comments on commit 76c6022

Please sign in to comment.