-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
Update Azure Cloud Shell for their new URI format #16247
Conversation
…/pabhoj/cloud_shell_fix
@@ -398,6 +398,7 @@ namespace winrt::Microsoft::Terminal::TerminalConnection::implementation | |||
|
|||
switch (bufferType) | |||
{ | |||
case WINHTTP_WEB_SOCKET_BINARY_MESSAGE_BUFFER_TYPE: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The bufferType they return seems to have changed to BINARY_MESSAGE_BUFFER_TYPE
, just adding that case here seems to work fine, not sure if this has other implications though
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unconventional, but looks like it's operating within spec. thanks for driving this down!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Quick question regarding //
. I think it might be important to check it out first.)
The Azure cloud shell team made some API changes that required us to format our requests a little differently. This PR makes those changes (more info in the comments in the code) Closes microsoft#16098
The Azure cloud shell team made some API changes that required us to format our requests a little differently. This PR makes those changes (more info in the comments in the code)
Closes #16098