From c79966a2f0e66aefe2a8c44efa0d3a478f44dcf5 Mon Sep 17 00:00:00 2001 From: galarragas Date: Fri, 15 Jan 2016 10:47:27 +0000 Subject: [PATCH] Post review changes: converted reference to `circuit-breaker` into a rst ref. Renamed the section into `circuit-breaker-proxy` to avoid section ID conflicts --- akka-contrib/docs/circuitbreaker.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-contrib/docs/circuitbreaker.rst b/akka-contrib/docs/circuitbreaker.rst index b33f222d92..628cb0b3a6 100644 --- a/akka-contrib/docs/circuitbreaker.rst +++ b/akka-contrib/docs/circuitbreaker.rst @@ -1,9 +1,9 @@ -.. _circuit-breaker: +.. _circuit-breaker-proxy: Circuit-Breaker Actor ===================== -This is an alternative implementation of the [Akka Circuit Breaker Pattern](http://doc.akka.io/docs/akka/snapshot/common/circuitbreaker.html). +This is an alternative implementation of the :ref:`Akka Circuit Breaker Pattern `. The main difference is that it is intended to be used only for request-reply interactions with an actor using the Circuit-Breaker as a proxy of the target one in order to provide the same failfast functionalities and a protocol similar to the circuit-breaker implementation in Akka.