Fix logic error in logging that logs errors in normal cases#97
Fix logic error in logging that logs errors in normal cases#97tmenninger wants to merge 2 commits intoAzure:masterfrom
Conversation
|
@tmenninger, |
|
Thanks for providing this change. I'll merge this in. |
| { | ||
|
|
||
| if (transport == null) { | ||
|
|
There was a problem hiding this comment.
Please follow braces style from coding guidelines - https://github.com/Azure/azure-iot-sdk-java/blob/master/.github/CODING_GUIDELINES.md
| { | ||
| if (transport == null) | ||
| if (transport == null) { | ||
|
|
There was a problem hiding this comment.
Please follow braces style from coding guidelines - https://github.com/Azure/azure-iot-sdk-java/blob/master/.github/CODING_GUIDELINES.md
|
I have two minor comments - if you can address them, this can easily go in. Thanks! |
|
Thanks for addressing comments. Your changes have been squashed to a single commit and merged at 29a3bcd |
There are coding mistakes in the constructers of both IotHubSendTask and IotHubReceiveTask that log errors under all normal conditions
Checklist
devdocfolder and added or modified requirements. No API changes.masterbranch.Description of the problem
Please correctly use braces
Description of the solution
should become