Skip to content

Commit

Permalink
backport middleware context
Browse files Browse the repository at this point in the history
  • Loading branch information
Kifen committed Jan 9, 2020
1 parent ec48e9b commit d1d9a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/hypervisor/hypervisor.go
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ func (m *Node) appCtx(w http.ResponseWriter, r *http.Request) (*httpCtx, bool) {
}

func (m *Node) tpCtx(w http.ResponseWriter, r *http.Request) (*httpCtx, bool) {
ctx, ok := m.appCtx(w, r)
ctx, ok := m.nodeCtx(w, r)
if !ok {
return nil, false
}
Expand Down

0 comments on commit d1d9a84

Please sign in to comment.