mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-23 21:45:46 +03:00
- control: fix race in /control/version.json handler
This commit is contained in:
parent
7bb40bca0f
commit
392c7b6ee1
1 changed files with 10 additions and 2 deletions
12
control.go
12
control.go
|
@ -559,11 +559,17 @@ func checkDNS(input string, bootstrap []string) error {
|
||||||
|
|
||||||
func handleGetVersionJSON(w http.ResponseWriter, r *http.Request) {
|
func handleGetVersionJSON(w http.ResponseWriter, r *http.Request) {
|
||||||
log.Tracef("%s %v", r.Method, r.URL)
|
log.Tracef("%s %v", r.Method, r.URL)
|
||||||
|
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
if now.Sub(versionCheckLastTime) <= versionCheckPeriod && len(versionCheckJSON) != 0 {
|
controlLock.Lock()
|
||||||
|
cached := now.Sub(versionCheckLastTime) <= versionCheckPeriod && len(versionCheckJSON) != 0
|
||||||
|
data := versionCheckJSON
|
||||||
|
controlLock.Unlock()
|
||||||
|
|
||||||
|
if cached {
|
||||||
// return cached copy
|
// return cached copy
|
||||||
w.Header().Set("Content-Type", "application/json")
|
w.Header().Set("Content-Type", "application/json")
|
||||||
w.Write(versionCheckJSON)
|
w.Write(data)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -589,8 +595,10 @@ func handleGetVersionJSON(w http.ResponseWriter, r *http.Request) {
|
||||||
httpError(w, http.StatusInternalServerError, "Couldn't write body: %s", err)
|
httpError(w, http.StatusInternalServerError, "Couldn't write body: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
controlLock.Lock()
|
||||||
versionCheckLastTime = now
|
versionCheckLastTime = now
|
||||||
versionCheckJSON = body
|
versionCheckJSON = body
|
||||||
|
controlLock.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------
|
// ---------
|
||||||
|
|
Loading…
Reference in a new issue