From 5a099b3000f9f6e5c152d6e108afec56f66a50b5 Mon Sep 17 00:00:00 2001 From: Elvis de Freitas Date: Thu, 7 Nov 2024 16:23:48 -0300 Subject: [PATCH] add ref --- docs/content/3-configuration/_index.en.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/content/3-configuration/_index.en.md b/docs/content/3-configuration/_index.en.md index cce3bfbc0..acb5e1d7a 100755 --- a/docs/content/3-configuration/_index.en.md +++ b/docs/content/3-configuration/_index.en.md @@ -192,15 +192,17 @@ __Version 2__ "dockerSolverHostMachineFallbackActive": true, "solverRemote" : { "circuitBreaker" : { - "failureThreshold" : 3, // how many attempts before open the circuit? - "failureThresholdCapacity" : 10, // how many attempts store to the stack? - "successThreshold" : 5, // how many attempts before close the circuit? - "testDelay" : "PT20S" // how many time to wait before test the circuit again?, see https://docs.oracle.com/javase/8/docs/api/java/time/Duration.html#toString-- for format explanation + "failureThreshold" : 3, + "failureThresholdCapacity" : 10, + "successThreshold" : 5, + "testDelay" : "PT20S" } } } ``` +* [Solver remote circuit breaker configuration][3] + ## Environment variable configuration Boolean values @@ -221,3 +223,4 @@ $ docker run defreitas/dns-proxy-server --help [1]: {{%relref "2-features/auto-configuration-as-default-dns/_index.md" %}} [2]: {{%relref "2-features/local-entries/_index.md" %}} +[3]: {{%relref "2-features/remote-solver-circuitbreaker/_index.en.md" %}}