Skip to content

Commit 77af69d

Browse files
authored
Add UseSeparateQueueForEntityWorkItems to AzureStorageOrchestrationService (#1298)
* Add UseSeparateQueueForEntityWorkItems to AzureStorageOrchestrationService
1 parent 311691e commit 77af69d

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

src/DurableTask.AzureStorage/AzureStorageOrchestrationService.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2150,6 +2150,16 @@ public Task<string> DownloadBlobAsync(string blobUri)
21502150
return cachedQueue;
21512151
}
21522152

2153+
/// <summary>
2154+
/// Whether to use separate work item queues for entities and orchestrators.
2155+
/// Wraps the value of AzureStorageOrchestrationServiceSettings.UseSeparateQueueForEntityWorkItems.
2156+
/// </summary>
2157+
public bool UseSeparateQueuesForEntityWorkItems
2158+
{
2159+
get => this.settings.UseSeparateQueueForEntityWorkItems;
2160+
set => this.settings.UseSeparateQueueForEntityWorkItems = value;
2161+
}
2162+
21532163
/// <summary>
21542164
/// Disposes of the current object.
21552165
/// </summary>

src/DurableTask.AzureStorage/DurableTask.AzureStorage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<PropertyGroup>
2323
<MajorVersion>2</MajorVersion>
2424
<MinorVersion>8</MinorVersion>
25-
<PatchVersion>0</PatchVersion>
25+
<PatchVersion>1</PatchVersion>
2626
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
2727
<FileVersion>$(VersionPrefix).0</FileVersion>
2828
<!-- FileVersionRevision is expected to be set by the CI. This is useful for distinguishing between multiple builds of the same version. -->

0 commit comments

Comments
 (0)