We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 808960d commit 3d55621Copy full SHA for 3d55621
tutorials/2ch.md
@@ -60,10 +60,10 @@ main = do
60
case args of
61
["controller", host, port] -> do
62
backend <- initializeBackend host port initRemoteTable
63
- startController backend (controller backend)
+ startMaster backend (controller backend)
64
["worker", host, port] -> do
65
66
- startWorker backend
+ startSlave backend
67
68
{% endhighlight %}
69
@@ -75,7 +75,7 @@ controller backend workers = do
75
-- Do something interesting with the workers
76
liftIO . putStrLn $ "Workers: " ++ show workers
77
-- Terminate the workers when the controller terminates (this is optional)
78
- terminateAllWorkers backend
+ terminateAllSlaves backend
79
80
81
### Other Topologies and Backends
0 commit comments