From 6e5dbc5a4774df3aab3604bea42875d056d9fd7e Mon Sep 17 00:00:00 2001 From: Frans Kaashoek Date: Sat, 1 Feb 2025 13:52:04 -0500 Subject: [PATCH] update --- src/go.mod | 2 +- src/kvsrv1/server.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/go.mod b/src/go.mod index d8be7b6..c8f642c 100644 --- a/src/go.mod +++ b/src/go.mod @@ -1,5 +1,5 @@ module 6.5840 -go 1.21 +go 1.22 require github.com/anishathalye/porcupine v1.0.0 diff --git a/src/kvsrv1/server.go b/src/kvsrv1/server.go index ae056e1..2201071 100644 --- a/src/kvsrv1/server.go +++ b/src/kvsrv1/server.go @@ -45,12 +45,12 @@ func (kv *KVServer) Put(args *rpc.PutArgs, reply *rpc.PutReply) { // Your code here. } -// You can ignore for this lab +// You can ignore Kill() for this lab func (kv *KVServer) Kill() { } -// You can ignore all arguments; they are for replicated KVservers in lab 4 +// You can ignore all arguments; they are for replicated KVservers func StartKVServer(ends []*labrpc.ClientEnd, gid tester.Tgid, srv int, persister *tester.Persister) []tester.IService { kv := MakeKVServer() return []tester.IService{kv}