(self, site, check_files=False)
| 222 | |
| 223 | # Check site file integrity |
| 224 | def checkSite(self, site, check_files=False): |
| 225 | if site.isServing(): |
| 226 | site.announce(mode="startup") # Announce site to tracker |
| 227 | site.update(check_files=check_files) # Update site's content.json and download changed files |
| 228 | site.sendMyHashfield() |
| 229 | site.updateHashfield() |
| 230 | |
| 231 | # Check sites integrity |
| 232 | @util.Noparallel() |
nothing calls this directly
no test coverage detected