Commit 9ccca5ef authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

changed max session error code to 503 - Service Unavailable

parent a86a768d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ func uaLoginUser(w http.ResponseWriter, r *http.Request) {
		if count >= pfmCtrl.maxSessions {
			err = errors.New("Maximum session count exceeded")
			log.Error(err.Error())
			http.Error(w, err.Error(), http.StatusInsufficientStorage)
			http.Error(w, err.Error(), http.StatusServiceUnavailable)
			return
		}