diff --git a/control/control.go b/control/control.go index 2ab29b3..7f2fce1 100644 --- a/control/control.go +++ b/control/control.go @@ -56,7 +56,7 @@ func NewControlServer(vaults string) *ControlServer { // Handle GET and POST requests to the root path. func (s *ControlServer) handle(w http.ResponseWriter, r *http.Request) { - lifecycle.SendEvent("Handle called.", Details{"method": r.Method}) + lifecycle.SendEvent("handle_event", Details{"message":"Handle is called.", "method": r.Method}) if r.URL.Path != "/" { assert.AlwaysOrUnreachable(true, "Control service: received a non-root request paths & handled that correctly.", Details{"path": r.URL.Path})