Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 479 Bytes

KNOWN_ISSUES.md

File metadata and controls

13 lines (11 loc) · 479 Bytes

Known Issues and Troubleshooting

Files metadata endpoint doesn't work with visas

If using GA4GH Visas with /metadata/datasets/{dataset}/files, e.g. /metadata/datasets/https://doi.org/abc/123/files, a reverse proxy might remove adjacent slashes //->/. This has been observed with nginx, with a fix as follows:

disable slash merging in server context

server {
    merge_slashes off
}