fix #557: guide permission-driven VPD flow
This commit is contained in:
@@ -20,6 +20,9 @@ public class ProbeErrorClassifier {
|
||||
if (text.contains("ORA-00942") || text.contains("ORA-01031")) {
|
||||
return ProbeStatus.OBJECT_NOT_ACCESSIBLE;
|
||||
}
|
||||
if (text.contains("ORA-28110") || text.contains("SQL Error Code 28110")) {
|
||||
return ProbeStatus.VPD_FILTER_ERROR;
|
||||
}
|
||||
if (status != null && (status.value() == 401 || status.value() == 403)) {
|
||||
return ProbeStatus.INVALID_TOKEN;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user