🐛 Source Gitlab: allow container_expiration_policy to be nullable + fix null projects list (#11907)
* allow nullable container_expiration_policy * Update Dockerfile * Update source_definitions.yaml * Update source_specs.yaml * fix unspecified projects * add doc update Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
This commit is contained in:
@@ -43,7 +43,7 @@ class SourceGitlab(AbstractSource):
|
||||
auth = TokenAuthenticator(token=config["private_token"])
|
||||
auth_params = dict(authenticator=auth, api_url=config["api_url"])
|
||||
|
||||
pids = list(filter(None, config.get("projects").split(" ")))
|
||||
pids = list(filter(None, config.get("projects", "").split(" ")))
|
||||
gids = config.get("groups")
|
||||
|
||||
if gids:
|
||||
|
||||
Reference in New Issue
Block a user