
Our os-loganalyze file conditions didn't quite match up to how apache's rewrite rules were handling things. Basically only .*console.html(.gz)? should be htmlified, all other html files should be passed through as is. Not doing this broke the rendering of testr results html files when we started sending all requests through os-loganalyze for proper index generation between swift and disk. Fix this with an update to the rules that restricts html htmlification to console.html. Change-Id: If03f6e2eda733c0abe572fe7f5cdabc8dd0c7268
11 lines
245 B
YAML
11 lines
245 B
YAML
conditions:
|
|
- filename_pattern: ^.*\.txt(\.gz)?$
|
|
filter: SevFilter
|
|
view: HTMLView
|
|
- filename_pattern: ^.*console\.html(\.gz)?$
|
|
filter: SevFilter
|
|
view: HTMLView
|
|
- filename_pattern: ^.*$
|
|
filter: NoFilter
|
|
view: PassthroughView
|