blob: bdf3ebaf9d20acdd9cb70f83ce4b3b3ab0d30508 [file] [log] [blame]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package http
import (
"net/http"
"github.com/hashicorp/vault/vault"
)
func handleUnAuthenticatedInFlightRequest(core *vault.Core) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
switch r.Method {
case "GET":
default:
respondError(w, http.StatusMethodNotAllowed, nil)
return
}
currentInFlightReqMap := core.LoadInFlightReqData()
respondOk(w, currentInFlightReqMap)
})
}