Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
merge preview
  • Loading branch information
zhiyuanliang-ms committed Dec 13, 2024
commit e6fea3c3a4916b06a419f8d51c638c7ee1882863
10 changes: 6 additions & 4 deletions src/AzureAppConfigurationImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,17 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
return this.#featureFlagEnabled && !!this.#options?.featureFlagOptions?.refresh?.enabled;
}

get #requestTraceOptions() {
get #requestTraceOptions(): RequestTracingOptions {
return {
requestTracingEnabled: this.#requestTracingEnabled,
initialLoadCompleted: this.#isInitialLoadCompleted,
enabled: this.#requestTracingEnabled,
appConfigOptions: this.#options,
initialLoadCompleted: this.#isInitialLoadCompleted,
replicaCount: this.#clientManager.getReplicaCount(),
isFailoverRequest: this.#isFailoverRequest
};
}
}


// #region ReadonlyMap APIs
get<T>(key: string): T | undefined {
return this.#configMap.get(key);
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.