Commit 9e061a5
committed
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
```1 parent e84cb1b commit 9e061a5
1 file changed
+3
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| 23 | + | |
22 | 24 | | |
23 | 25 | | |
24 | 26 | | |
| |||
34 | 36 | | |
35 | 37 | | |
36 | 38 | | |
| 39 | + | |
37 | 40 | | |
38 | 41 | | |
39 | 42 | | |
| |||
0 commit comments