Hello, I'm having an issue with my ECS push work p...
# ask-community
a
Hello, I'm having an issue with my ECS push work pool in the git_clone step with gitlab. I'm using the gitlab credentials block. Here is my deployment yaml:
Copy code
# pull section allows you to provide instructions for cloning this project in remote locations
pull:
- prefect.deployments.steps.git_clone:
    repository: <https://gitlab.company.com/business-intelligence/company-elt.git>
    branch: dev
    credentials: '{{ prefect.blocks.gitlab-credentials.company-elt }}'
I added some logging to see what command it's attempting to run:
Copy code
['git', 'clone', '<https://oauth2>:my.uid:glpat-abcdefghijk@gitlab.company.com/business-intelligence/company-elt.git']
The issue is that it's attempting to prepend the oauth2 to my gitlab url. Has anyone experienced this before? Thanks