From 6ed8d23fa091ea5ac9fb1362c1d088699c10b0cb Mon Sep 17 00:00:00 2001 From: Ginger Collison Date: Fri, 4 Oct 2019 10:30:48 -0500 Subject: [PATCH] Update pingpong.md --- developer/connecting/pingpong.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/developer/connecting/pingpong.md b/developer/connecting/pingpong.md index 4c553c2..fb8f130 100644 --- a/developer/connecting/pingpong.md +++ b/developer/connecting/pingpong.md @@ -2,16 +2,7 @@ The client and server use a simple PING/PONG protocol to check that they are both still connected. The client will ping the server on a regular, configured interval so that the server usually doesn't have to initiate the PING/PONG interaction. -
-digraph g { - rankdir=LR - client [shape=box, style="rounded", label="NATS Client"]; - natsserver [shape=circle, fixedsize="true", width="1.0", height="1.0", label="nats-server"]; - - client -> natsserver [label="PING"]; - natsserver -> client [label="PONG"]; -} -
+![Ping Pong](/assets/images/pingpong.svg) ## Set the Ping Interval