Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
BB V1.03
-
None
-
Sprint 3 (10.02.2025), Sprint 4 (25.02.2025), Sprint 5 (10.03.2025)
Description
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 {} \;
|
|
## Before tac update
|
/srv/dev/master-web/http.log
|
## After tac update
|
/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
|