[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#71631] [PATCH] swh: Specify 'extid_version' when looking up by exte
From: |
Simon Tournier |
Subject: |
[bug#71631] [PATCH] swh: Specify 'extid_version' when looking up by external ID. |
Date: |
Tue, 18 Jun 2024 17:07:34 +0200 |
Re,
> - (if (string-suffix? "/" url)
> - url
> - (string-append url "/")))
> + (cond
> + ((string-suffix? "/" url)
> + url)
> + ;; Special case; don't redirect
> + ;; <https://gitlab.softwareheritage.org/swh/meta/-/issues/5093>
> + ((string-contains url "extid_version")
> + url)
> + (else
> + (string-append url "/"))))
For the interested reader, here the message from SWH:
https://sentry.softwareheritage.org/share/issue/840686e1329b484081ac2b07d27cd4aa/
In short, the redirection is not possible here.
Cheers,
simon