You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please note that gitlab has its own issues with periods in project names (gitlabhq/gitlabhq#8553), please keep that in mind when testing.
I've hacked my own workaround into java-gitlab-api in order to get the project show up in the first place.
Since the
@RequestMapping
does not match periods by default, repository names containing one are not matched fully, resulting in incorrect redirect.E.g
http://glproxy/namespace/repo.name
is redirected tohttp://gitlab/namespace/repo
If I'm not mistaken, this can be fixed by adding a custom pattern to the path variable (
/{repo:.*}
)The text was updated successfully, but these errors were encountered: