Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/DurableTask.AzureStorage/EntityTrackingStoreQueries.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ async ValueTask<List<EntityMetadata>> ConvertResultsAsync(IEnumerable<Orchestrat
do
{
DurableStatusQueryResult page = await this.trackingStore.GetStateAsync(condition, 100, continuationToken, cancellation);
continuationToken = page.ContinuationToken;

var tasks = new List<Task>();
foreach (OrchestrationState state in page.OrchestrationState)
Expand Down
4 changes: 2 additions & 2 deletions src/DurableTask.Core/Logging/LogEvents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1252,8 +1252,8 @@ public EntityBatchExecuted(EntityBatchRequest request, EntityBatchResult result)
public int EntityStateLength { get; }

public override EventId EventId => new EventId(
EventIds.EntityBatchExecuting,
nameof(EventIds.EntityBatchExecuting));
EventIds.EntityBatchExecuted,
nameof(EventIds.EntityBatchExecuted));

public override LogLevel Level => LogLevel.Information;

Expand Down
2 changes: 1 addition & 1 deletion src/DurableTask.Core/TaskHubWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public TaskHubWorker(
orchestrationObjectManager,
activityObjectManager,
new NameVersionObjectManager<TaskEntity>(),
loggerFactory: null)
loggerFactory)
{
}

Expand Down