使用重试策略后配置 Azure 存储帐户时出错

Sam*_*eer 2 c# azure azure-table-storage retrypolicy

这是我配置Azure存储帐户的代码

public CloudTableClient ConfigureStorageAccount()
{
        var storageCred = new StorageCredentials(ConfigurationManager.AppSettings["SASToken"]);

        CloudTableClient = new CloudTableClient(
                        new StorageUri(new Uri(ConfigurationManager.AppSettings["StorageAccountUri"])), storageCred);



        var backgroundRequestOption = new TableRequestOptions()
        {
            // Client has a default exponential retry policy with 4 sec delay and 3 retry attempts
            // Retry delays will be approximately 3 sec, 7 sec, and 15 sec
            MaximumExecutionTime = TimeSpan.FromSeconds(30),
            // PrimaryThenSecondary in case of Read-access geo-redundant storage, else set this to PrimaryOnly
            LocationMode = LocationMode.PrimaryThenSecondary,


        };

        CloudTableClient.DefaultRequestOptions = backgroundRequestOption;

        return CloudTableClient;
}
Run Code Online (Sandbox Code Playgroud)

当我指定时,backgroundRequestOption我收到错误“未指定目标存储位置的 Uri”。请考虑更改请求的位置模式。

当我不指定时,backgroundRequestOption我不会收到任何错误。我需要在哪里指定这个 URI?

Zha*_*oft 5

如果选择 LocationMode.PrimaryThenSecondary,则需要指定 PrimaryUri 和 secondaryUri。