We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ed8ce commit 82700ecCopy full SHA for 82700ec
lib/galaxy/webapps/galaxy/fast_app.py
@@ -170,9 +170,8 @@ def get_openapi_schema() -> dict[str, Any]:
170
def include_tus(app: FastAPI, gx_app):
171
config = gx_app.config
172
root_path = "" if config.galaxy_url_prefix == "/" else config.galaxy_url_prefix
173
- prefix = urljoin(root_path, "api/upload/resumable_upload")
174
upload_tus_router = create_tus_router(
175
- prefix=prefix,
+ prefix=urljoin(root_path, "api/upload/resumable_upload"),
176
files_dir=config.tus_upload_store or config.new_file_path,
177
max_size=config.maximum_upload_file_size,
178
)
0 commit comments