forked from aws/Jobs-for-AWS-IoT-embedded-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Jobs_UpdateMsg to generate valid JSON (aws#109)
Jobs_UpdateMsg was putting double quotes around the `statusDetails` value resulting in the following invalid JSON: ``` { "status": "QUEUED", "statusDetails": "{ "key": "value" }" } ``` This change removes the unnecessary double quotes to generate a valid JSON: ``` { "status": "QUEUED", "statusDetails": { "key": "value" } } ``` This was reported here - aws#107 Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
- Loading branch information
Showing
4 changed files
with
28 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters