Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ Released under [Apache License 2.0](./LICENSE.txt).
## Third Party Attributions

Developers choosing to distribute a binary implementation of this project are responsible for obtaining and providing all required licenses and copyright notices for the third-party code used in order to ensure compliance with their respective open source licenses.

Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ static class MachineService implements JsonRpcService {
public void routing(JsonRpcRules rules) {
rules.register("/machine",
JsonRpcHandlers.builder()
.putMethod("start", this::start)
.putMethod("stop", this::stop)
.method("start", this::start)
.method("stop", this::stop)
.build());
}

Expand Down
Loading