简体   繁体   中英

CodeCommit error Elastic Beanstalk (AWS)

After running

pip install --upgrade awsebcli

I get the following error when trying to do

eb deploy

Could not push code to the CodeCommit repository: ERROR: CommandError - An error occurred while handling git command. Error code: 128 Error: fatal: 'codecommit-origin dev' does not appear to be a git repository fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

I can't figure out why that happened. It seems like the connection to the automatically generated repository codecommit-origin is not working anymore.

In the meantime, I am forced to do the following in order to update the code on Elastic Beanstalk:

eb codesource local

But that's not a long-term solution as it deactivates the automatic CodeCommit (git push).

Do you have any idea how to solve that issue?

It happened to me when I upgraded the last version of awsebcli 3.12.2, perhaps because it introduced the following ( changelog ):

Fixed local-remote inconsistency observed after deployments using CodeCommit

I don't fully understand what is happening but I would suggest that you revert to the previous version with

pip install -Iv awsebcli==3.12.1

This has fixed my problem and I can deploy with CodeCommit again

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM