1
0
mirror of https://github.com/pcvolkmer/etl-processor.git synced 2025-07-04 15:32:55 +00:00

fix: add info severity to data quality report

This commit is contained in:
2023-12-05 14:22:02 +01:00
parent 8dee349c37
commit ced6609d9a
4 changed files with 19 additions and 2 deletions

View File

@ -56,5 +56,6 @@ class ReportService(
enum class Severity(@JsonValue val value: String) {
ERROR("error"),
WARNING("warning"),
INFO("info")
}
}