Skip to content

Commit

Permalink
r/storage_queue: fixing a bug where the Table URI was obtained rath…
Browse files Browse the repository at this point in the history
…er than the Queue URI

Fixes #25261
  • Loading branch information
tombuildsstuff committed Mar 15, 2024
1 parent e151398 commit c484267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/storage/storage_queue_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func resourceStorageQueueCreate(d *pluginsdk.ResourceData, meta interface{}) err
}

// Determine the queue endpoint, so we can build a data plane ID
endpoint, err := account.DataPlaneEndpoint(client.EndpointTypeTable)
endpoint, err := account.DataPlaneEndpoint(client.EndpointTypeQueue)
if err != nil {
return fmt.Errorf("determining Queue endpoint: %v", err)
}
Expand Down

0 comments on commit c484267

Please sign in to comment.