fix variables that werent being called
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
parent
9527d789e7
commit
b9fcb41e6d
9 changed files with 19 additions and 22 deletions
|
@ -241,7 +241,7 @@ func (t *authZPluginTestServer) start() {
|
|||
r.HandleFunc("/Plugin.Activate", t.activate)
|
||||
r.HandleFunc("/"+AuthZApiRequest, t.auth)
|
||||
r.HandleFunc("/"+AuthZApiResponse, t.auth)
|
||||
t.listener, err = net.Listen("tcp", pluginAddress)
|
||||
t.listener, _ = net.Listen("tcp", pluginAddress)
|
||||
server := http.Server{Handler: r, Addr: pluginAddress}
|
||||
server.Serve(l)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue