-
Bug
-
Resolution: Fixed
-
Major
-
None
-
Jenkins Version 2.504.1
Warnings Plugin Version: 12.6.0
-
- Problem Identified
The Jenkins error occurred because the SARIF file contained `category` properties formatted as arrays:
```json
"category": [
"Recommended",
"CodeStyle"
]
```
But Jenkins expected them as strings:
```json
"category": "Recommended"
```
I attach the Jenkins Error log file.