Skip to content

Commit

Permalink
[Batch] Fix: Readded incorrectly removed Location/Retry-After headers (
Browse files Browse the repository at this point in the history
…Azure#12560)

Re-added Location and Retry-After headers to private endpoint connection update operation. Removing these from the swagger was incorrect and caused a breaking change in the C# SDK.
  • Loading branch information
dpwatrous authored and mkarmark committed Jul 20, 2021
1 parent 9fad538 commit ecb9775
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1748,7 +1748,18 @@
}
},
"202": {
"description": "The operation was accepted and will be performed in the background."
"description": "The operation was accepted and will be performed in the background.",
"headers": {
"Location": {
"description": "The URL of the resource used to check the status of the asynchronous operation.",
"type": "string"
},
"Retry-After": {
"description": "Suggested delay to check the status of the asynchronous operation. The value is an integer that represents the seconds.",
"type": "integer",
"format": "int32"
}
}
},
"204": {
"description": "The operation was successful."
Expand Down

0 comments on commit ecb9775

Please sign in to comment.