Skip to content

Commit 9c95d8c

Browse files
author
Jake Sanders
authored
Fix broken SVG image
raw.githubusercontent.com doesn't send the correct headers otherwise.
1 parent 8ca0e25 commit 9c95d8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/advent-2019/building-a-microservices-network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ It may look fairly familiar to Go developers. With Go Micro we’ve tried to mai
7373

7474
Most of the interface methods should hopefully be self-explanatory, but you might be wondering about channels and sessions. Channels are much like addresses, providing a way to segment different message streams over the tunnel. Listeners listen on a given channel and return a unique session when a client dials into the channel. The session is used to communicate between peers on the same tunnel channel. The Go Micro tunnel provides different communication semantics too. You can choose to use either unicast or multicast.
7575

76-
<img src="https://raw.githubusercontent.com/micro/docs/master/images/session.svg" />
76+
<img src="https://raw.githubusercontent.com/micro/docs/master/images/session.svg?sanitize=true" />
7777

7878
In addition tunnels enable bidirectional connections; sessions can be dialled or listened from either side. This enables the reversal of connections so anything behind a [NAT](https://en.wikipedia.org/wiki/Network_address_translation) or without a public IP can become a server.
7979

0 commit comments

Comments
 (0)