X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6feefc59c459d778046a83cb29178afc04acdf1c..609646134bcd8fc3a7fd500848220741ecc4a9d2:/services/arv-git-httpd/server.go diff --git a/services/arv-git-httpd/server.go b/services/arv-git-httpd/server.go index 40e77a812a..e2311d22e8 100644 --- a/services/arv-git-httpd/server.go +++ b/services/arv-git-httpd/server.go @@ -12,8 +12,8 @@ type server struct { func (srv *server) Start() error { mux := http.NewServeMux() - mux.Handle("/", &authHandler{newGitHandler()}) + mux.Handle("/", &authHandler{handler: newGitHandler()}) srv.Handler = mux - srv.Addr = theConfig.Addr + srv.Addr = theConfig.Listen return srv.Server.Start() }