Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azure Powershell issues #29

Closed
geoffreysmith opened this issue Jul 16, 2014 · 1 comment
Closed

Azure Powershell issues #29

geoffreysmith opened this issue Jul 16, 2014 · 1 comment

Comments

@geoffreysmith
Copy link

Due to a known issue with Invoke-WebRequest on Azure we have to do this:

$req = [System.Net.WebRequest]::Create($url)
$req.Headers.Add("Authenticate", $deploymentToolAuthToken)
$result = $req.GetResponse()

And invoke the WebRequest object directly. Powershell is doing something with IO buffers that is borked on Azure:

projectkudu/kudu#877

Everything else works great, thought a note on the ReadMe would be nice. Thanks!

@kamsar kamsar closed this as completed in b68f2ca Jul 22, 2014
@kamsar
Copy link
Collaborator

kamsar commented Jul 22, 2014

Thanks for bringing that up :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants