diff options
author | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-12-02 17:05:45 +0100 |
---|---|---|
committer | Rasmus Dahlberg <rasmus.dahlberg@kau.se> | 2020-12-02 17:05:45 +0100 |
commit | 3f1489f4f4532f93f766fc849a2e3e2b65667747 (patch) | |
tree | 30adb41b1bce816cbce7c23454c89ae22ae89521 /server | |
parent | b540f681b4cdf740f9b8d1e584fd2b107fc1b090 (diff) |
added instance and log parameter tests
Diffstat (limited to 'server')
-rw-r--r-- | server/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/main.go b/server/main.go index c60f95d..a82faa2 100644 --- a/server/main.go +++ b/server/main.go @@ -69,7 +69,7 @@ func main() { glog.Fatalf("failed setting up log parameters: %v", err) } - i := stfe.NewInstance(lp, client, *rpcDeadline, mux) + i := stfe.NewInstance(lp, client, *rpcDeadline) for _, handler := range i.Handlers() { glog.Infof("adding handler: %s", handler.Path()) mux.Handle(handler.Path(), handler) |