Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aphyr committed Feb 27, 2023
1 parent 75c5b58 commit b91beef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ like so:
```

The `node_id` field indicates the ID of the node which is receiving this
message: here, the node ID is "n3". Your node should remember this ID and
message: here, the node ID is "n1". Your node should remember this ID and
include it as the `src` of any message it sends.

The `node_ids` field lists all nodes in the cluster, including the recipient.
All nodes receive an identical list; you may use its order if you like.

In response to the `init` message, each node must respond with a message of
type `init_ok`.
In response to the `init` message, each node must respond with a message of
type `init_ok`.

```json
{
Expand Down
5 changes: 3 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject maelstrom "0.2.3-SNAPSHOT"
(defproject maelstrom "0.2.3"
:description "A test bench for writing toy distributed systems"
:url "https://github.com/jepsen-io/maelstrom"
:license {:name "Eclipse Public License"
Expand All @@ -21,4 +21,5 @@
[prismatic/schema "1.4.1"]
; Random distributions
[incanter/incanter-core "1.9.3"]
])
]
:profiles {:uberjar {:aot [maelstrom.core]}})

0 comments on commit b91beef

Please sign in to comment.