Skip to content

Commit 729e969

Browse files
authored
Merge pull request #302226 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents 61ac655 + 99c36ab commit 729e969

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/azure-app-configuration/feature-flag-telemetry-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In this document, you:
2121
2222
## Feature evaluation
2323

24-
The Feature evaluation event is emitted whenever a feature flag that has telemetry enabled is evaluated in your application. This event, named `EvaluationEvent`, occurs each time your code checks a feature flag's status or gets a variant. The event captures the evaluation result, variant assignment details, and contextual information about why specific decisions were made.
24+
The Feature evaluation event is emitted whenever a feature flag that has telemetry enabled is evaluated in your application. This event, named `FeatureEvaluation`, occurs each time your code checks a feature flag's status or gets a variant. The event captures the evaluation result, variant assignment details, and contextual information about why specific decisions were made.
2525

2626
This event contains the following fields:
2727

@@ -54,4 +54,4 @@ The full schema can be found in the [App Configuration Feature Evaluation Event
5454

5555
## Next steps
5656

57-
In this document, you learned about the telemetry data available for feature flags. To learn about how to use the telemetry data in your applications, continue to the following document for your language or platform.
57+
In this document, you learned about the telemetry data available for feature flags. To learn about how to use the telemetry data in your applications, continue to the following document for your language or platform.

articles/azure-functions/durable/durable-functions-dotnet-entities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ public class Counter : TaskEntity<int>
122122
this.logger = logger;
123123
}
124124

125-
public int Add(int amount)
125+
public void Add(int amount)
126126
{
127127
this.State += amount;
128128
}
129129

130-
public Reset()
130+
public Task Reset()
131131
{
132132
this.State = 0;
133133
return Task.CompletedTask;

0 commit comments

Comments
 (0)