You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
```
0 commit comments