Yooakim
Yooakim

Reputation: 1817

Azure WebService Deployment from GitHub fails

All of a sudden I have problems with the automatic deployment from GitHub to my WebService (free) in Azure.

The deploy fails and when I look in the log thisa is what is says:

Command 'git.exe fetch external  ...' aborted due to no output and CPU activity for 60 seconds.  You may increase SCM_COMMAND_IDLE_TIMEOUT setting to solve the issue.
git.exe fetch external --progress

This seems to be internal to Azure and I am wondering if anyonelse have seen this?

Upvotes: 3

Views: 717

Answers (1)

David Ebbo
David Ebbo

Reputation: 43183

Update 1/3/2015: it appears that this issue is triggered, by turning on the Virtual Network (vnet) feature on the Azure Website. We're still investigating why this happens, but at least we know it's not random.

Original answer:

Seems the git fetch is hanging for some reason. It could happen if it's prompting for creds, but there may be other reasons.

I'd suggest using Kudu Console to manually run git commands in your site\repository folder on Azure, to try to isolate the issue outside of a full deployment.

Upvotes: 1

Related Questions