Skip to content

Commit

Permalink
Merge pull request #923 from hashicorp/dequeued
Browse files Browse the repository at this point in the history
`sdk/client/resourcemanager`: supporting `Dequeued` as an undocumented polling status
  • Loading branch information
catriona-m authored Mar 13, 2024
2 parents fa015d7 + 19bddd9 commit 196b36e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sdk/client/resourcemanager/poller_lro.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,9 @@ func (p *longRunningOperationPoller) Poll(ctx context.Context) (result *pollers.
// ContainerRegistry@2019-06-01-preview returns `Creating` rather than `InProgress` during creation
"Creating": pollers.PollingStatusInProgress,

// CosmosDB @ 2023-04-15 returns `Dequeued` rather than `InProgress` during creation/update
"Dequeued": pollers.PollingStatusInProgress,

// StorageSync@2020-03-01 returns `finishNewStorageSyncService` rather than `InProgress` during creation/update (https://github.com/hashicorp/go-azure-sdk/issues/565)
"finishNewStorageSyncService": pollers.PollingStatusInProgress,

Expand Down

0 comments on commit 196b36e

Please sign in to comment.