Skip to content

Commit

Permalink
[communication] Update examples to use string for retry-after (#29739)
Browse files Browse the repository at this point in the history
- Required by autorest schema for examples
  • Loading branch information
natekimball-msft authored Jul 9, 2024
1 parent ad84205 commit b50677f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"responses": {
"200": {
"headers": {
"Retry-After": 100
"Retry-After": "100"
},
"body": {
"messageId": "F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"headers": {
"Repeatability-Result": "accepted",
"Operation-Location": "https://contoso.westus.communications.azure.com//email/status/8540c0de-899f-5cce-acb5-3ec493af3800?api-version=2021-10-01-preview",
"Retry-After": 1,
"Retry-After": "1",
"x-ms-request-id": "8540c0de-899f-5cce-acb5-3ec493af3800"
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"responses": {
"200": {
"headers": {
"retry-after": 100
"retry-after": "100"
},
"body": {
"id": "F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"202": {
"headers": {
"Operation-Location": "https://contoso.westus.communications.azure.com//emails/operations/8540c0de-899f-5cce-acb5-3ec493af3800?api-version=2023-01-15-preview",
"retry-after": 20
"retry-after": "20"
},
"body": {
"id": "8540c0de-899f-5cce-acb5-3ec493af3800",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"responses": {
"200": {
"headers": {
"retry-after": 100
"retry-after": "100"
},
"body": {
"id": "F9168C5E-CEB2-4faa-B6BF-329BF39FA1E4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"202": {
"headers": {
"Operation-Location": "https://contoso.westus.communications.azure.com//emails/operations/8540c0de-899f-5cce-acb5-3ec493af3800?api-version=2023-03-31",
"retry-after": 20
"retry-after": "20"
},
"body": {
"id": "8540c0de-899f-5cce-acb5-3ec493af3800",
Expand Down

0 comments on commit b50677f

Please sign in to comment.