We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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!
The text was updated successfully, but these errors were encountered:
b68f2ca
Thanks for bringing that up :)
Sorry, something went wrong.
No branches or pull requests
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!
The text was updated successfully, but these errors were encountered: