-
Notifications
You must be signed in to change notification settings - Fork 237
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
Fix: Bug fix for SasUri generation failure after disconnecting/connec… #1666
Conversation
…ting deviceClient
I'd rather see us remove the open/close methods on the With the above, we'd instantiate the FileUpload class once (when the first file upload request is made) and never have to open/close/re-instantiate it again. Thoughts? |
This makes more sense, yes. Since the |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
…to tmahmood/sasUri-reconnection-fix
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
The bug was reproducible when once a file is uploaded to blob storage and after client reconnection, the same process fails with null exception.
The issue was missing open() call to HttpsTransportManager object when the device client is opened after disconnection.
Original GitHub issue: #1662