Commit 48932f94 authored by Yann Garcia's avatar Yann Garcia
Browse files

Bug fixed in dai.go

parent 12d7f1ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -979,7 +979,7 @@ func notifyAppContextDeletion(notifyUrl string, contextId string) {

	resp, err := http.Post(url, "application/json", bytes.NewBuffer(jsonNotif))
	duration := float64(time.Since(startTime).Microseconds()) / 1000.0
	_ = httpLog.LogNotification(url, "", "", string(jsonNotif), resp, startTime)
	_ = httpLog.LogNotification(url, "POST", "", "", string(jsonNotif), resp, startTime)
	if err != nil {
		log.Error(err)
		met.ObserveNotification(sandboxName, serviceName, applicationContextDeleteNotification, url, nil, duration)