Skip to content

Commit 2bc4ce1

Browse files
authored
Fix forgotten cookie in releases chapter (elixir-lang#1404)
1 parent 75c0ebd commit 2bc4ce1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

‎getting-started/mix-otp/config-and-releases.markdown‎

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,11 +277,13 @@ That's happening because the release `foo` is already listening on port `4040` a
277277
releases: [
278278
foo: [
279279
version:"0.0.1",
280-
applications: [kv_server::permanent, kv::permanent]
280+
applications: [kv_server::permanent, kv::permanent],
281+
cookie:"weknoweachother"
281282
],
282283
bar: [
283284
version:"0.0.1",
284-
applications: [kv::permanent]
285+
applications: [kv::permanent],
286+
cookie:"weknoweachother"
285287
]
286288
]
287289
```

0 commit comments

Comments
(0)