Merged
Conversation
avanigupta
reviewed
Oct 30, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/RequestTracingOptions.cs
Show resolved
Hide resolved
jimmyca15
reviewed
Oct 30, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationProvider.cs
Outdated
Show resolved
Hide resolved
5a597c4 to
1e2d081
Compare
jimmyca15
reviewed
Nov 5, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationSource.cs
Outdated
Show resolved
Hide resolved
jimmyca15
reviewed
Nov 5, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/Constants/LoggingConstants.cs
Outdated
Show resolved
Hide resolved
jimmyca15
reviewed
Nov 5, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/Extensions/ResponseExtensions.cs
Outdated
Show resolved
Hide resolved
jimmyca15
reviewed
Nov 5, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/AzureAppConfigurationOptions.cs
Outdated
Show resolved
Hide resolved
jimmyca15
reviewed
Nov 5, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/TracingUtils.cs
Outdated
Show resolved
Hide resolved
jimmyca15
reviewed
Nov 5, 2025
src/Microsoft.Extensions.Configuration.AzureAppConfiguration/PageWatcher.cs
Outdated
Show resolved
Hide resolved
linglingye001
pushed a commit
that referenced
this pull request
Feb 5, 2026
* wip * wip * wip * wip * fix test * wip * wip * wip * add test * update correlation context * update * only check response time for refresh trigger engine * disallow sentinel key refresh for AFD * add feature flag refresh test * update * resolve comments * update * update error message * upgrade sdk version * update test
This was referenced Feb 12, 2026
Merged
Closed
Closed
Closed
Closed
This was referenced Feb 19, 2026
Closed
Closed
Closed
This was referenced Feb 27, 2026
Open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why this PR?
Introduce a new API:
ConnectAzureFrontDoorwhich takes the Azure Front Door endpoint as parameter. The configuration provider will load configuration settings from the Azure Front Door.Behavior change
When
ConnectAzureFrontDooris used:authorizationheader will be removed from the requestsync-tokenwill not be attached to the request.Refresh logic
Use "
x-ms-dateresponse header from AppConfig - this is the time when server generated the responseThe provider will now track the page etags and the
x-ms-dateof each page response.A refresh is triggered only when the refresh engine detects that the page’s ETag has changed and the accompanying x-ms-date is later than the previous server response time. Once a refresh occurs, the system simply reloads whatever content is currently available from the CDN. This means it may temporarily load outdated pages, but because the provider serving the outdated content will still show a detectable change during subsequent refresh checks, the system will eventually update all pages. The underlying philosophy is that a refresh should, at minimum, achieve what an application restart would. Therefore, our refresh mechanism effectively reloads all configuration settings.