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
Using SOURCE_GITLAB_FILEPATH="/foo/bar.csv" with a leading slash, and a non-existing file, makes Kafka Security Manager log the following:
[2020-09-01 14:00:35,365] INFO No changes were detected in the ACL file /foo/bar.csv. Skipping .... (com.github.simplesteph.ksm.source.GitLabSourceAcl)
even though there are no foo/bar.csv in the repository. I guess this is caused by GitLabSourceAcl.scala including $filepath verbatim in the GitLab API URL, thus requesting:
GitLab will return a 308 redirect to a new URL leading to 404, but I guess this redirect is not followed, and that the <400 status is not flagged as en error.
The text was updated successfully, but these errors were encountered:
Using SOURCE_GITLAB_FILEPATH="/foo/bar.csv" with a leading slash, and a non-existing file, makes Kafka Security Manager log the following:
even though there are no foo/bar.csv in the repository. I guess this is caused by GitLabSourceAcl.scala including $filepath verbatim in the GitLab API URL, thus requesting:
GitLab will return a 308 redirect to a new URL leading to 404, but I guess this redirect is not followed, and that the <400 status is not flagged as en error.
The text was updated successfully, but these errors were encountered: