Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDBF-973 Fix master-web http log location
We write the http master-web log file in the wrong path. Previously relative to the master directory and currently, in the root path of the buildbot deployment after the .tac update ``` $ find . -type f -name "http.log*" -exec realpath {} \; /srv/dev/master-web/http.log /srv/dev/http.log.2 /srv/dev/http.log.14 /srv/dev/http.log.16 ... ``` This patch will change the http log dir to the common Logs folder for all masters. Expected location after this patch ``` $ find . -type f -name "master-web-www.log*" -exec realpath {} \; /srv/dev/docker-compose/logs/master-web-www.log ```
- Loading branch information