Skip to content

Commit 033771d

Browse files
authored
Merge pull request #344 from jakexks/patch-1
advent-2019: Dec 8 Fix broken SVG image
2 parents 1e033a7 + 9c95d8c commit 033771d

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)