Skip to content

Commit

Permalink
BUG FIX: Fixed HopLink properties: context should be a dictionary, ui…
Browse files Browse the repository at this point in the history
…nt32 from… (Azure#9868)

* Fixed HopLink properties: context should be a dictionary, uint32 fromat instead of int32

* removed format for RoundTripTime
  • Loading branch information
irrogozh authored and 00Kai0 committed Oct 12, 2020
1 parent d088e45 commit d4b99ed
Showing 1 changed file with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3397,10 +3397,10 @@
},
"context": {
"readOnly": true,
"type": "array",
"description": "Provides additional context on the issue.",
"items": {
"$ref": "#/definitions/IssueContext"
"type": "object",
"description": "Provides additional context on links.",
"additionalProperties": {
"type": "string"
}
},
"resourceId": {
Expand All @@ -3416,19 +3416,16 @@
"roundTripTimeMin": {
"description": "Minimum roundtrip time in milliseconds.",
"readOnly": true,
"format": "int32",
"type": "integer"
},
"roundTripTimeAvg": {
"description": "Average roundtrip time in milliseconds.",
"readOnly": true,
"format": "int32",
"type": "integer"
},
"roundTripTimeMax": {
"description": "Maximum roundtrip time in milliseconds.",
"readOnly": true,
"format": "int32",
"type": "integer"
}
}
Expand Down

0 comments on commit d4b99ed

Please sign in to comment.