From cbe9748f589df14f3ba6fa3d345eea627e5cd8d3 Mon Sep 17 00:00:00 2001 From: Martin Tomka Date: Wed, 11 Oct 2023 09:18:20 +0200 Subject: [PATCH] [Docs] Fix link --- docs/pipelines/resilience-pipeline-registry.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pipelines/resilience-pipeline-registry.md b/docs/pipelines/resilience-pipeline-registry.md index 22b71146987..e8057e2ac2a 100644 --- a/docs/pipelines/resilience-pipeline-registry.md +++ b/docs/pipelines/resilience-pipeline-registry.md @@ -149,7 +149,7 @@ ResiliencePipeline pipeline = registry.GetPipeline("A"); ### How dynamic reloads work -Dynamic reloading is a concept anchored in the registry, while the `` remains agnostic to it. The registry employs callbacks to configure the builders, and these callbacks are invoked right before the creation of the pipeline. When dynamic reloading is activated, the registry monitors any changes that could affect the pipeline, seamlessly reloading it as needed. The reloading process involves invoking the callback that configures the pipeline; within this callback is also the call to the `AddReloadToken` method. Thus, each reload also enables dynamic reloads for that particular pipeline. As a consumer, you may opt to stop reloading by simply not invoking the `AddReloadToken` method. It's crucial to note that if any error occurs during reloading, the previous pipeline is retained, reloading is halted, and Polly emits a `ReloadFailed` telemetry event. +Dynamic reloading is a concept anchored in the registry, while the remains agnostic to it. The registry employs callbacks to configure the builders, and these callbacks are invoked right before the creation of the pipeline. When dynamic reloading is activated, the registry monitors any changes that could affect the pipeline, seamlessly reloading it as needed. The reloading process involves invoking the callback that configures the pipeline; within this callback is also the call to the `AddReloadToken` method. Thus, each reload also enables dynamic reloads for that particular pipeline. As a consumer, you may opt to stop reloading by simply not invoking the `AddReloadToken` method. It's crucial to note that if any error occurs during reloading, the previous pipeline is retained, reloading is halted, and Polly emits a `ReloadFailed` telemetry event. ## Resource disposal